-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (24 loc) · 938 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
from distutils.core import setup
license_text = open('LICENSE.txt').read()
VERSION = __import__("bootstrap").__version__
setup(
name = 'django-bootstrap-scripts',
version = VERSION,
url = 'http://github.com/bsnux/django-bootstrap-scripts',
author = 'Arturo Fernandez',
author_email = '[email protected]',
license = license_text,
packages = ['bootstrap'],
data_files=[('', ['LICENSE.txt'])],
description = 'Scripts for bootstrapping Django projects',
install_requires=[
'Fabric==1.4.2',
'django-extensions==0.9',
],
classifiers = ['Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)'
'Topic :: Internet :: WWW/HTTP :: Dynamic Content']
)