-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
30 lines (28 loc) · 1.05 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
import setuptools
from mend_azure_wi_sync._version import __version__, __description__, __tool_name__
mend_name = f"mend_{__tool_name__}"
setuptools.setup(
name=mend_name,
entry_points={
'console_scripts': [
f'{__tool_name__}={mend_name}.{__tool_name__}:main'
]},
packages=setuptools.find_packages(),
version=__version__,
author="Mend Professional Services",
author_email="ps@mend.io",
url=f"https://github.com/mend-toolkit/{__tool_name__.replace('_', '-')}",
description=__description__,
license='LICENSE.txt',
python_requires='>=3.9',
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
install_requires=[line.strip() for line in open("requirements.txt").readlines()],
classifiers=[
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
)