forked from pyouroboros/ouroboros
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (33 loc) · 1.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
from setuptools import setup, find_packages
from pyouroboros import VERSION
requirements = ['docker>=3.7.0',
'schedule>=0.5.0',
'prometheus_client>=0.5.0',
'requests>=2.21.0',
'influxdb>=5.2.1']
requirements_dev = ['docker>=3.7.0',
'schedule>=0.5.0',
'prometheus_client>=0.5.0',
'requests>=2.21.0',
'influxdb>=5.2.1',
'flake8']
def readme():
with open('./README.md') as f:
return f.read()
setup(
name='ouroboros-cli',
version=VERSION,
description='Automatically update running docker containers',
long_description=readme(),
long_description_content_type='text/markdown',
url='https://github.com/pyouroboros/ouroboros',
license='MIT',
classifiers=['Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'],
packages=find_packages(exclude=['doc', 'tests']),
scripts=['ouroboros'],
install_requires=requirements,
tests_require=requirements_dev,
python_requires='>=3.6.2'
)