forked from operator-framework/operator-courier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (41 loc) · 1.04 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
from setuptools import setup
with open('README.md', 'r') as f:
long_description = f.read()
tests_require = [
'pytest',
'pytest-cov',
'testfixtures',
]
setup(
name='operator-courier',
packages=['operatorcourier'],
version='2.1.7',
description='Build, verify and push operators',
author='AOS Marketplace',
author_email='[email protected]',
url='https://github.com/operator-framework/operator-courier',
entry_points={
'console_scripts': ['operator-courier=operatorcourier.cli:main'],
},
keywords=['operator', 'courier'],
install_requires=[
'pyyaml',
'requests',
'validators',
'semver'
],
python_requires='>=3.6, <4',
setup_requires=['pytest-runner'],
tests_require=tests_require,
extras_require={
'test': tests_require,
},
long_description=long_description,
long_description_content_type="text/markdown",
license="Apache License 2.0",
include_package_data=True,
classifiers=[
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
)