forked from whitesource-ps/ws-nexus-integration
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (29 loc) · 1.08 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
import setuptools
from ws_nexus_integration._version import __version__, __description__, __tool_name__
ws_name = f"ws_{__tool_name__}"
setuptools.setup(
name=ws_name,
entry_points={
'console_scripts': [
f'{ws_name}={ws_name}.{__tool_name__}:main'
]},
version=__version__,
author="WhiteSource Professional Services",
author_email="[email protected]",
description=__description__,
url=f"https://github.com/whitesource-ps/{ws_name.replace('_', '-')}",
license='LICENSE',
packages=setuptools.find_packages(),
python_requires='>=3.7',
install_requires=open('requirements.txt').read().splitlines(),
# extras_require={"docker": ["docker~=5.0.0"]},
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
)