This repository has been archived by the owner on Nov 5, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
46 lines (42 loc) · 1.57 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
41
42
43
44
45
46
from setuptools import find_packages, setup
install_requires = [
'Django>=1.6.10',
'billiard>=3.3.0.19',
'termcolor>=1.1.0',
]
setup(
name='discover road runner',
version='0.2.1',
url='https://github.com/pzrq/discover-road-runner',
author='Peter Schmidt',
author_email='[email protected]',
description=('Running tests should be a fun voyage of '
'learning and discovery. Built on the maxims of productivity, '
'the Django app and multiprocessing.'),
license='', # TODO: Investigate and specify licence
packages=find_packages(),
include_package_data=True,
install_requires=install_requires,
scripts=[],
entry_points={},
extras_require={},
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
# 'Environment :: Web Environment',
# 'Framework :: Django',
'Intended Audience :: Developers',
# 'License :: OSI Approved :: BSD License', # TODO
# 'Operating System :: OS Independent', # TODO
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
# 'Topic :: Internet :: WWW/HTTP',
# 'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
# 'Topic :: Internet :: WWW/HTTP :: WSGI',
# 'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)