-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
executable file
·40 lines (37 loc) · 1.08 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
34
35
36
37
38
39
40
#!/usr/bin/env python
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup, find_packages
VERSION = '0.0.13'
LONG_DESC = """\
"""
setup(name='django-dockit',
version=VERSION,
description="",
long_description=LONG_DESC,
classifiers=[
'Programming Language :: Python',
'Operating System :: OS Independent',
'Natural Language :: English',
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
keywords='django',
maintainer = 'Jason Kraus',
maintainer_email = '[email protected]',
url='http://github.com/webcube/django-dockit',
license='New BSD License',
packages=find_packages(exclude=['test_environment', 'tests']),
test_suite='tests.setuptest.runtests',
tests_require=(
'pep8==1.3.1',
'coverage',
'django',
'Mock',
'nose',
'django-nose',
),
include_package_data = True,
)