-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
29 lines (27 loc) · 1.02 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="screenlogicpy",
version="0.10.1",
author="Kevin Worrel",
author_email="[email protected]",
description="Interface for Pentair ScreenLogic connected pool controllers over IP via Python",
license="GPLv3",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/dieselrabbit/screenlogicpy",
packages=setuptools.find_packages(include=["screenlogicpy", "screenlogicpy.*"]),
classifiers=[
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
],
python_requires=">=3.10",
install_requires=[
"async_timeout>=3.0.0",
],
entry_points={"console_scripts": ["screenlogicpy=screenlogicpy.__main__:main"]},
)