-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (39 loc) · 1.48 KB
/
setup.py
File metadata and controls
45 lines (39 loc) · 1.48 KB
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
from setuptools import find_packages, setup
def get_long_description():
with open("README.md") as f:
return f.read()
def get_requirements():
with open("requirements.in") as f:
return f.read().splitlines()
setup(
name="ubi-config",
version="3.3.0",
description="A Python Library for accessing Universal Base Image configuration",
long_description=get_long_description(),
long_description_content_type="text/markdown",
author="",
author_email="",
url="https://github.com/release-engineering/ubi-config",
license="GPL-3.0-or-later",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules",
],
packages=find_packages(exclude=["tests", "tests.*"]),
package_data={
"ubiconfig": ["utils/config_schema.json"],
},
python_requires=">=3.6",
install_requires=get_requirements(),
)