-
Notifications
You must be signed in to change notification settings - Fork 24
/
setup.py
40 lines (38 loc) · 1.4 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
# -*- 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="artcommon",
author="AOS ART Team",
author_email="[email protected]",
setup_requires=['setuptools>=65.5.1', 'setuptools_scm'],
use_scm_version={
"root": ".."
},
description="Common library files used by ART tools",
url="https://github.com/openshift-eng/art-tools/tree/main/artcommon",
license="Apache License, Version 2.0",
packages=find_packages(exclude=["tests", "tests.*"]),
install_requires=INSTALL_REQUIRES,
dependency_links=[],
python_requires='>=3.8',
classifiers=[
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Environment :: Console",
"Operating System :: POSIX",
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"Natural Language :: English",
]
)