forked from dyve/django-bootstrap-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·24 lines (23 loc) · 829 Bytes
/
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
from setuptools import setup
setup(
name='django-bootstrap-toolkit',
version='2.5.9',
url='https://github.com/dyve/django-bootstrap-toolkit',
author='Dylan Verheul',
author_email='dylan@dyve.net',
license='Apache License 2.0',
packages=['bootstrap_toolkit', 'bootstrap_toolkit.templatetags'],
include_package_data=True,
description='Bootstrap support for Django projects',
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
"Environment :: Web Environment",
"Framework :: Django",
],
)