-
Notifications
You must be signed in to change notification settings - Fork 20
/
setup.py
32 lines (31 loc) · 1.22 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
from setuptools import setup, find_packages
setup(
name='django-bootstrapped',
version='0.1.0-dev',
description='A reusable Django application to quickly integrate the Bootstrap toolkit from Twitter.',
long_description=open('README.rst').read(),
# Get more strings from http://www.python.org/pypi?:action=list_classifiers
author='Ryan Brady',
author_email='[email protected]',
url='https://github.com/rbrady/django-bootstrapped',
download_url='https://github.com/rbrady/django-bootstrapped/downloads',
license='BSD',
packages=find_packages(exclude=('ez_setup', 'tests', 'example')),
# tests are on the roadmap
#tests_require=[
# 'django>=1.3,<1.4',
#],
#test_suite='runtests.runtests',
include_package_data=True,
zip_safe=False, # because we're including media that Django needs
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)