-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
41 lines (39 loc) · 1.1 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
"""Python package setup."""
import setuptools
with open("README.md", "r", encoding="UTF-8") as fh:
long_description = fh.read()
setuptools.setup(
name="amshan",
version="2.1.1",
author="Tore Amundsen",
author_email="[email protected]",
description="Decode P1 and MBUS (Meter Bus) DLMS data. Special support for norwegian and swedish meters.",
long_description=long_description,
long_description_content_type="text/markdown",
platforms=["POSIX", "Windows"],
url="https://github.com/toreamun/amshan",
packages=["han"],
package_data={"han": ["py.typed"]},
keywords=[
"meter",
"han",
"ams",
"p1",
"mbus",
"aidon",
"kaifa",
"kamstrup",
"dlms",
"cosem",
"hdlc",
"fast frame check",
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.7",
install_requires=["construct"],
extras_require={"serial": ["pyserial-asyncio>=0.4"]},
)