forked from vertexproject/synapse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
80 lines (67 loc) · 2.17 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
#!/usr/bin/env python
import os
import sys
from setuptools import setup, find_packages
from setuptools.command.install import install
VERSION = '0.1.14'
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', '')
tag = tag.lstrip('v')
if tag != VERSION:
info = f"Git tag: {tag} does not match the version of this app: {VERSION}"
sys.exit(info)
setup(
name='synapse',
version=VERSION,
description='Synapse Intelligence Analysis Framework',
author='The Vertex Project LLC',
author_email='[email protected]',
url='https://github.com/vertexproject/synapse',
license='Apache License 2.0',
packages=find_packages(exclude=['scripts',
]),
include_package_data=True,
install_requires=[
'pyOpenSSL>=16.2.0,<20.0.0',
'msgpack>=0.6.1,<0.7.0',
'xxhash>=1.0.1,<2.0.0',
'lmdb>=0.94,<1.0.0',
'tornado>=5.1,<6.0.0',
'regex>=2017.9.23',
'PyYAML>=5.1,<6.0',
'aiohttp>=3.5.4,<4.0',
'prompt-toolkit>=2.0.7,<2.1.0',
'lark-parser>=0.7.1,<0.8.0',
'Pygments>=2.3.0,<2.4.0',
],
extras_require={
'docs': [
'sphinx>=1.8.2,<2.0.0',
'jupyter>=1.0.0,<2.0.0',
'hide-code>=0.5.2,<1.0.0',
'nbstripout>=0.3.3,<1.0.0',
'sphinx-rtd-theme>=0.4.2,<1.0.0',
],
'dev': [
'pytest>=4.0.0,<5.0.0',
'autopep8>=1.4.3,<2.0.0',
'pytest-cov>=2.6.0,<3.0.0',
'pycodestyle>=2.4.0,<3.0.0',
'pytest-xdist>=1.25.0,<2.0.0',
],
},
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: Apache Software License',
'Topic :: System :: Clustering',
'Topic :: System :: Distributed Computing',
'Topic :: System :: Software Distribution',
'Programming Language :: Python :: 3.7',
],
cmdclass={
'verify': VerifyVersionCommand,
},
)