-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
42 lines (36 loc) · 1.11 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
"""The setup.py file."""
import os
from setuptools import find_packages, setup
URL = "https://github.com/manzanotti/geniushub-client"
with open("README.md", "r") as fh:
LONG_DESCRIPTION = fh.read()
VERSION = os.environ["GITHUB_REF_NAME"]
setup(
name="geniushub-client",
description="An aiohttp-based client for Genius Hub systems",
keywords=["genius", "geniushub", "heatgenius"],
author="Paul Manzotti",
author_email="manzo@gorilla-tactics.com",
url=URL,
install_requires=["aiohttp"],
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
packages=find_packages(exclude=["test", "docs"]),
version=VERSION,
license="MIT",
python_requires=">=3.9",
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
"Topic :: Home Automation",
],
project_urls={ # Optional
"Bug Reports": f"{URL}/issues",
"Source": f"{URL}",
},
)