-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
33 lines (31 loc) · 1.02 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
from setuptools import setup
from version import __version__
setup(
name="alma_sbom",
version=__version__,
author="Stepan Oksanichenko",
author_email="[email protected]",
description="AlmaLinux OS SBOM data management utility.",
url="https://git.almalinux.org/almalinux/alma-sbom",
project_urls={
"Bug Tracker": "https://git.almalinux.org/almalinux/alma-sbom/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: "
"GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
],
py_modules=['alma_sbom'],
scripts=['alma_sbom.py'],
install_requires=[
'requests>=2.20.0',
'cyclonedx-python-lib==2.7.1',
'spdx-tools==0.8',
'urllib3<2.0',
'packageurl-python==0.10.3',
'GitPython==3.1.29',
'immudb_wrapper @ git+https://github.com/AlmaLinux/[email protected]#egg=immudb_wrapper',
],
python_requires=">=3.9",
)