forked from dave-shawley/tornado-problem-details
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·55 lines (52 loc) · 1.58 KB
/
setup.py
File metadata and controls
executable file
·55 lines (52 loc) · 1.58 KB
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
#!/usr/bin/env python
import setuptools
import problemdetails
setuptools.setup(
name='tornado-problem-details',
version=problemdetails.version,
description='RFC-7807 Error documents for Tornado',
long_description=open('README.rst').read(),
author='Dave Shawley',
author_email='daveshawley@gmail.com',
url='https://github.com/dave-shawley/tornado-problem-details',
packages=['problemdetails'],
install_requires=[
'tornado>=4.4',
],
extras_require={
'dev': [
'coverage==4.5.3',
'flake8==3.7.7',
'flake8-fixme==1.1.0',
'flake8-print==3.1.0',
'nose==1.3.7',
'python-docs-theme==2018.7',
'readme-renderer==24.0',
'sphinx==2.0.0',
'tox==3.8.4',
'twine==1.13.0',
'wheel==0.33.1',
'yapf==0.26.0',
],
'docs': [
'python-docs-theme==2018.7',
'sphinx==2.0.0',
],
'examples': [
'jsonschema==3.0.1',
'pyyaml==5.1',
],
},
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Internet :: WWW/HTTP :: HTTP Servers',
'Topic :: Software Development :: Libraries',
],
)