-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (28 loc) · 1010 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
25
26
27
28
29
30
31
32
33
from setuptools import setup, find_packages
__version__ = __import__('bootstrap').__version__
description = "Bare Django app that includes Bootstrap's SCSS files as static files."
setup(
name="django-bootstrap",
version='.'.join([str(v) for v in __version__]),
url="http://github.com/littleweaver/django-bootstrap",
description=description,
long_description=description,
maintainer='Little Weaver Web Collective, LLC',
maintainer_email='[email protected]',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Other Audience',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
platforms=['OS Independent'],
install_requires=[
'django>=1.7',
]
)