forked from upsight/doctor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
57 lines (54 loc) · 1.78 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
47
48
49
50
51
52
53
54
55
56
57
import os
from setuptools import setup
execfile(os.path.join(os.path.abspath(os.path.dirname(__file__)),
'doctor', '_version.py'))
setup(
name='doctor',
version=__version__, # noqa -- flake8 should ignore this line
description=('A module that assists in using JSON schemas to validate data '
'in Flask APIs and generate API documentation.'),
url='https://github.com/upsight/doctor',
license='MIT',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
],
keywords=['python', 'flask', 'json', 'jsonschema', 'validation',
'documentation', 'sphinx'],
author='Upsight',
author_email='dev@upsight.com',
packages=[
'doctor',
'doctor.docs',
'doctor.utils',
],
install_requires=[
'jsonschema >= 2.5.1, < 3.0.0',
'pyyaml >= 3.11, < 4.0',
'rfc3987 >= 1.3.4, < 2.0.0',
'simplejson >= 3.6.3, < 4.0.0',
'strict-rfc3339 >= 0.5, < 1.0',
],
extras_require={
'docs': [
'mock >= 1.0.1, < 2.0.0',
'sphinx >= 1.5.4, < 2.0.0',
'sphinx-rtd-theme==0.1.9',
'sphinxcontrib-httpdomain >= 1.4.0, < 2.0.0',
],
'tests': [
'coverage >= 3.5.2, < 4.0.0',
'flake8 >= 2.4.0, < 3.0.0',
'flask >= 0.10.1, < 1.0.0',
'flask-restful==0.3.5',
'Flask-Testing==0.6.2',
'mock >= 1.0.1, < 2.0.0',
'nose >= 1.3.4, < 2.0.0',
'nose-exclude >= 0.1.9, < 1.0.0',
'nose-progressive >= 1.5.1, < 2.0.0',
],
},
)