-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
33 lines (30 loc) · 1018 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
#!/usr/bin/env python
import os
import sys
from doctor import __version__
from setuptools import setup
# Publish to Pypi
if sys.argv[-1] == 'publish':
os.system('python setup.py sdist upload')
sys.exit()
setup(name='django-doctor',
version=__version__,
description='Django health check and test-that-it-works application.',
long_description=open('README.md').read(),
author='Funkbit',
author_email='[email protected]',
url='https://github.com/funkbit/django-doctor',
include_package_data=True,
packages=['doctor', 'doctor.services', 'doctor.management', 'doctor.management.commands'],
tests_require=['django>=1.4,<1.5'],
license='BSD',
classifiers=(
"Development Status :: 3 - Alpha",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
)
)