-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
54 lines (48 loc) · 1.34 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
#!/usr/bin/env python
import io
import os
import sys
from setuptools import find_packages, setup
if sys.argv[-1] == 'publish':
os.system('python setup.py sdist upload')
os.system('python setup.py bdist_wheel upload')
sys.exit()
readme = io.open('README.md', 'r', encoding='utf-8').read()
setup(
name='asyncy-platform-engine',
description='The engine of the Asyncy platform',
long_description=readme,
author='Asyncy',
author_email='[email protected]',
version='0.2.0',
packages=find_packages(),
tests_require=[
'pytest==4.2.0',
'pytest-cov==2.6.1',
'pytest-mock==1.10.1',
'pytest-asyncio==0.10.0'
],
setup_requires=['pytest-runner'],
install_requires=[
'prometheus-client==0.2.0',
'tornado==5.0.2',
'click==7.0',
'frustum==0.0.6',
'raven==6.9.0',
'storyscript==0.20.1',
'ujson==1.35',
'certifi>=2018.8.24',
'psycopg2==2.7.5',
'requests==2.21.0' # Used for structures like CaseInsensitiveDict.
],
classifiers=[
'Environment :: Console',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3'
],
entry_points="""
[console_scripts]
asyncy-server=asyncy.Service:Service.main
"""
)