forked from no-dice/django-bootstrap-themes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·33 lines (31 loc) · 1.07 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
32
33
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='django-bootstrap-themes',
version=__import__('bootstrap_themes').__version__,
description="Bootstrap theme support for Django.",
long_description=open("README.md", "r").read(),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: End Users/Desktop",
"Natural Language :: English",
"Operating System :: OS Independent",
"Framework :: Django",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries",
"Topic :: Utilities",
"License :: OSI Approved :: MIT License",
],
keywords='django bootstrap themes',
author='T. Scott Barnes',
author_email='[email protected]',
url='http://github.com/no-dice/django-bootstrap-themes',
license='MIT',
packages=find_packages(),
install_requires=[
'django>=1.4',
],
include_package_data=True,
zip_safe=False,
)