forked from openshift-eng/doozer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (41 loc) · 1.51 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import sys
if sys.version_info < (3, 8):
sys.exit('Sorry, Python < 3.8 is not supported.')
with open('./requirements.txt') as f:
INSTALL_REQUIRES = f.read().splitlines()
setup(
name="rh-doozer",
author="AOS ART Team",
author_email="[email protected]",
setup_requires=[],
description="CLI tool for managing and automating Red Hat software releases",
long_description=open('README.md').read(),
url="https://github.com/openshift-eng/doozer",
license="Apache License, Version 2.0",
packages=find_packages(exclude=["tests", "tests.*", "functional_tests", "functional_tests.*", "tests_functional", "tests_functional.*"]),
include_package_data=True,
entry_points={
'console_scripts': [
'doozer = doozerlib.cli.__main__:main'
]
},
install_requires=INSTALL_REQUIRES,
test_suite='tests',
dependency_links=[],
python_requires='>=3.8',
classifiers=[
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Environment :: Console",
"Operating System :: POSIX",
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"Natural Language :: English",
]
)