-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
83 lines (77 loc) · 2.36 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
"""
Setup script.
"""
import os
import sys
from setuptools import setup
version = '3.0.0.rc.2'
if sys.argv[-1] == 'tag':
os.system("git tag -a %s -m 'version %s'" % (version, version))
os.system("git push origin master --tags")
sys.exit()
if sys.argv[-1] == 'publish':
os.system("python setup.py sdist upload")
os.system("python setup.py bdist_wheel upload")
sys.exit()
if sys.argv[-1] == 'test':
test_requirements = [
'pytest',
'flake8',
'coverage'
]
try:
modules = map(__import__, test_requirements)
except ImportError as e:
err_msg = e.message.replace("No module named ", "")
msg = "%s is not installed. Install your test requirements." % err_msg
raise ImportError(msg)
os.system('py.test')
sys.exit()
# From docs for pytest-runner
needs_pytest = any(arg in ['pytest', 'test', 'ptr'] for arg in sys.argv)
setup_requires = ['pytest-runner'] if needs_pytest else []
setup(
author='Josh Wilson',
author_email='josh.wilson@fivestars.com',
description='falcon-authentication',
download_url='',
setup_requires=setup_requires,
install_requires=[
'falcon'
],
extras_require={
'backend-hawk': ['mohawk~=1.0'],
'backend-jwt': ['pyjwt~=1.7']
},
license='MIT',
name='falcon-authentication',
packages=[
'falcon_authentication',
],
scripts=[],
test_suite='tests',
tests_require=[
'pytest<3.3.0',
'pytest-cov~=2.4',
'pytest-mock~=1.6',
'python-coveralls~=2.9',
],
url='https://github.com/jcwilson/falcon-authentication',
version=version,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware",
"Topic :: Software Development :: Libraries :: Python Modules",
]
)