forked from allegrogroup/django-bob
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (30 loc) · 1.11 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
from setuptools import setup
setup(
name='django-bob',
description='A set of helper tags and templates for using bootstrap in django.',
long_description="""
Bob is a library of templates, template tags, helper functions and form widgets
that make it easier to use the Twitter's Bootstrap framework with Django.
""",
version='1.5.8',
license='BSD',
url='http://bob.readthedocs.org/',
author='Radomir Dopieralski',
author_email='devel@sheep.art.pl',
keywords='bootstrap django css html',
packages=['bob', 'bob.templatetags'],
install_requires=['distribute', 'django'],
platforms='any',
include_package_data=True,
zip_safe=False,
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: Human Machine Interfaces',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: User Interfaces',
],
)