-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
23 lines (21 loc) · 889 Bytes
/
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
from setuptools import setup, find_packages
with open("README.md", "r", encoding='utf-8') as fh:
long_description = fh.read()
setup(
name="dashio",
version="3.5.3",
description="DashIO interface library",
long_description=long_description,
long_description_content_type="text/markdown",
author="James Boulton",
author_email="james@dashio.com",
url="https://dashio.io",
download_url="https://github.com/dashio-connect/python-dashio",
packages=find_packages(),
package_data={"dashio": ["py.typed"]},
license="MIT",
classifiers=["Programming Language :: Python :: 3.8", "Operating System :: OS Independent"],
install_requires=["paho-mqtt>=2.0.0", "pyzmq", "python-dateutil", "zeroconf", "shortuuid", "pyserial", "astral", "pydantic"],
python_requires='>=3.8.0',
scripts=['utilities/c64_encode', 'utilities/c64_decode'],
)