-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
28 lines (24 loc) · 866 Bytes
/
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
import os
from setuptools import find_packages, setup
requirements_path = os.path.join(os.path.dirname(__file__), 'requirements.txt')
with open(requirements_path, "r", encoding="utf8") as f:
required = f.read().splitlines()
setup(
name='spdxmerge',
version='0.2.0',
description="merges content of two/more spdx sboms",
long_description_content_type="text/markdown",
url="https://github.com/philips-software/SPDXMerge",
packages=find_packages(include=['spdxmerge'], exclude=['test', '*.test', '*.test.*']),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=required,
python_requires='>=3.8',
entry_points='''
[console_scripts]
spdxmerge=spdxmerge.SPDXMerge:main
'''
)