-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
53 lines (42 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
from setuptools import setup, find_packages
exec(open('cowait/version.py').read())
with open('README.md', 'r') as fh:
long_description = fh.read()
setup(
name='cowait',
version=version,
author='Backtick Technologies',
description='Cowait is a framework for creating ' +
'containerized workflows with asynchronous Python.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/backtick-se/cowait',
packages=find_packages(exclude=["test.*", "test"]),
entry_points={
'console_scripts': [
'cowait = cowait.__main__:main',
],
},
classifiers=[],
python_requires='>=3.7',
install_requires=[
'docker>=4',
'kubernetes>=10,<22',
'nest-asyncio>=1.4.1',
'aiohttp==3.7.4',
'aiohttp-middlewares>=1',
'pytest>=6',
'alt-pytest-asyncio>=0.5.3', # would be nice to move to the widely used pytest-asyncio
'python-dotenv>=0.15',
# cli
'click>=7',
'PyYAML>=5',
'sty==1.0.0-beta.12', # tty coloring, seems to be stuck in beta. remove/replace
# utilities, not actually required
'pytest-sugar >= 0.9',
'pytest-cov >= 2',
# extract to cowait-dask
'dask >= 2',
'distributed >= 2',
]
)