forked from yamcs/python-yamcs-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
46 lines (42 loc) · 1.39 KB
/
setup.py
File metadata and controls
46 lines (42 loc) · 1.39 KB
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
44
45
46
import io
import setuptools
with io.open("README.md", encoding="utf-8") as f:
readme = f.read()
packages = [
package for package in setuptools.find_packages() if package.startswith("yamcs")
]
setuptools.setup(
name="yamcs-client",
version="1.4.6",
description="Yamcs API client library",
long_description=readme,
long_description_content_type="text/markdown",
url="https://github.com/yamcs/python-yamcs-client",
author="Space Applications Services",
author_email="yamcs@spaceapplications.com",
license="LGPL",
packages=packages,
namespace_packages=["yamcs", "yamcs.protobuf"],
python_requires=">=3.5",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Operating System :: OS Independent",
],
platforms="Posix; MacOS X; Windows",
install_requires=[
"protobuf>=3.6",
"requests",
"setuptools",
"websocket-client<=0.48.0",
],
include_package_data=True,
zip_safe=False,
)