-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
32 lines (28 loc) · 901 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
from setuptools import setup, find_packages
DESCRIPTION = "Djangotoolbox for Django-nonrel"
LONG_DESCRIPTION = None
try:
LONG_DESCRIPTION = open('README.rst').read()
except:
pass
CLASSIFIERS = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
'Topic :: Database',
'Topic :: Software Development :: Libraries :: Python Modules',
]
setup(name='djangotoolbox',
version='0.0.1',
packages=find_packages(exclude=('tests', 'tests.*')),
author='Waldemar Kornewald',
url='http://www.allbuttonspressed.com/projects/djangotoolbox',
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
platforms=['any'],
classifiers=CLASSIFIERS,
install_requires=[],
)