-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
43 lines (40 loc) · 1.58 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
34
35
36
37
38
39
40
41
42
43
import io
import setuptools
with io.open("README.md", encoding="utf-8") as f:
readme = f.read()
setuptools.setup(
name="yamcs-cli",
version="1.4.11",
description="Yamcs Command-Line Tools",
long_description=readme,
long_description_content_type="text/markdown",
url="https://github.com/yamcs/yamcs-cli",
author="Space Applications Services",
author_email="[email protected]",
license="LGPL",
packages=setuptools.find_namespace_packages(where="src"),
package_dir={"": "src"},
entry_points={"console_scripts": ["yamcs = yamcs.cli.__main__:main"]},
python_requires=">=3.8",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"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",
"Operating System :: OS Independent",
],
platforms="Posix; MacOS X; Windows",
install_requires=["argcomplete", "python-dateutil", "yamcs-client>=1.11.0"],
extras_require={"kerberos": ["yamcs-client-kerberos>=1.3.0"]},
include_package_data=True,
zip_safe=False,
)