-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
29 lines (23 loc) · 826 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
24
25
26
27
28
29
"""pyopensprinkler setup script."""
from setuptools import setup
version = "0.7.14"
github_username = "vinteo"
github_repository = "py-opensprinkler"
github_path = f"{github_username}/{github_repository}"
github_url = f"https://github.com/{github_path}"
download_url = f"{github_url}/archive/{version}.tar.gz"
project_urls = {"Bug Reports": f"{github_url}/issues"}
setup(
name="pyopensprinkler",
version=version,
author="Vincent Teo, Travis Glenn Hansen",
author_email="[email protected], [email protected]",
packages=["pyopensprinkler"],
install_requires=["aiohttp>=3.8.5", "backoff>=2.2.1"],
url=github_url,
download_url=download_url,
project_urls=project_urls,
license="MIT",
description="A Python module for the OpenSprinkler API.",
platforms="Cross Platform",
)