forked from adroffner/flask-error-handling
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·45 lines (40 loc) · 1.48 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
#! /usr/bin/env python
from setuptools import setup, find_packages
from flask_error_handling import __version__
def readme():
with open('README.rst') as f:
return f.read()
setup(name='flask_error_handling',
version=__version__,
license='PSF',
description='Flask Error Handling provides bindings to register Exceptions with HTTP status codes.',
long_description=readme(),
author='Andrew Droffner',
author_email='[email protected]',
url='https://codecloud.web.att.com/projects/ST_TITAN/repos/flask-error-handling/browse',
packages=find_packages(exclude=['docs', 'tests']),
install_requires=[
],
scripts=[],
# NO nosetests: junitparser.TestSuite confuses nose, testing ERRORs
test_suite='nose.collector',
# tests_require=['nose>=1.3.7', 'coverage>=4.4.1'],
# NOTE: ./setup.py nosetests <= needs "setup_requires"
setup_requires=[
'coverage>=4.5.2',
'flake8>=3.6.0',
'Flask>=1.0.2',
'nose>=1.3.7',
'parameterized>=0.6.1',
],
keywords=[
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: Python Software Foundation License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
])