-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
56 lines (51 loc) · 2.03 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
import os
import sys
import setuptools
ROOT = os.path.dirname(__file__)
if sys.version_info < (3, 6, 0):
sys.exit("Python 3.6.0 is the minimum required version for building this package")
with open(os.path.join(ROOT, "README.md")) as f:
long_description = f.read()
setuptools.setup(
name="assisted-events-scrape",
setup_requires=["vcversioner"],
vcversioner={"vcs_args": ["git", "describe", "--tags", "--long"]},
description="Export your test suites and cases to JUnit report using decorators",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/openshift-assisted/assisted-events-scrape",
author="RedHat",
author_email="UNKNOWN",
license="Apache License 2.0",
packages=setuptools.find_packages("assisted-events-scrape"),
package_dir={"": "assisted-events-scrape"},
install_requires=["urllib3>=1.26.7",
"elasticsearch<7.14.0",
"requests>=2.26.0",
"kubernetes>=18.20.0",
"retry>=0.9.2",
"waiting>=1.4.1",
"assisted-service-client>=1.0.27.1"],
entry_points={
'console_scripts': [
'events_scrape = events_scrape.events_scrape:main',
'ccx_export = ccx_export:export_events',
'ccx_export_cleanup = ccx_export:delete_s3_objects',
],
},
include_package_data=True,
python_requires=">=3.6.0",
classifiers=[
"Development Status :: 3 - Alpha",
'License :: OSI Approved :: Apache Software License',
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Testing",
],
)