-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
70 lines (62 loc) · 2.06 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
import os
import sys
import setuptools
from setuptools.command.install import install
with open("README.md", "r") as fh:
long_description = fh.read()
VERSION = '0.3.23'
class VerifyVersionCommand(install):
"""Custom command to verify that the git tag matches our version"""
description = 'verify that the git tag matches our version'
def run(self):
tag = os.getenv('CIRCLE_TAG')
if tag != VERSION:
info = "Git tag: {0} does not match the version of this app: {1}".format(
tag, VERSION
)
sys.exit(info)
setuptools.setup(
name="playback-studio",
version=VERSION,
author="Optibus",
author_email="eitan@optibus.com",
description="Record your service operations in production and replay them locally at any time in a sandbox",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Optibus/playback",
packages=setuptools.find_packages(),
install_requires=[
'parse==1.6.6',
'jsonpickle==0.9.3',
'six>=1.15.0',
'contextlib2==0.6.0',
'decorator==4.4.2'
],
extras_require={'dev': [
'mock==2.0.0',
'rsa<=4.0; python_version < \'3\'',
'python-jose<=0.3.2; python_version < \'3\'',
'moto==1.3.13',
'pytest==4.6.9',
'parameterized==0.7.0',
'Werkzeug==0.16.1',
'Flask==1.1.2',
'flask-restplus==0.13.0',
'future==0.18.2',
'pylint==2.6.0; python_version > "3.0"',
'pylint-junit==0.3.2; python_version > "3.0"',
'flake8==3.8.4; python_version > "3.0"',
'flake8-formatter-junit-xml==0.0.6; python_version > "3.0"',
'pytest-cov==2.10.1; python_version > "3.0"'
]},
classifiers=[
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
],
python_requires='>=2.7',
cmdclass={
'verify': VerifyVersionCommand,
},
)