-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
54 lines (48 loc) · 1.87 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
44
45
46
47
48
49
50
51
52
53
54
"""Setup script for intelino-trainlib-async."""
from setuptools import setup, find_namespace_packages
with open("README.md", encoding="utf-8") as f:
text = f.read()
# update relative image path to url for pypi
img_ref = "[main-img]: ./"
img_url = "[main-img]: https://raw.githubusercontent.com/intelino-code/intelino-trainlib-async-py/master/"
long_description = text.replace(img_ref, img_url)
REQUIREMENTS = [
"bleak",
"Rx",
"typing-extensions",
]
setup(
name="intelino-trainlib-async",
version="1.0.4",
description="Asynchronous Python library (SDK) for interacting with the intelino smart train.",
long_description=long_description,
long_description_content_type="text/markdown",
author="intelino",
author_email="[email protected]",
license="Intelino Public License",
url="https://intelino.com",
project_urls={
"Documentation": "https://intelino-trainlib-async-py.readthedocs.io/",
"Source Code": "https://github.com/intelino-code/intelino-trainlib-async-py",
"Intelino Lab": "https://lab.intelino.com",
},
packages=find_namespace_packages(include=["intelino*"]),
python_requires=">=3.7",
classifiers=[
"Framework :: AsyncIO",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"License :: Other/Proprietary License",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3 :: Only",
"Typing :: Typed",
],
install_requires=REQUIREMENTS,
)