forked from ivgg-me/aioremootio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (35 loc) · 1.37 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
from setuptools import setup, find_packages
import pathlib
here = pathlib.Path(__file__).parent.resolve()
long_description = (here / 'README.md').read_text(encoding='utf-8')
install_requires = list(val.strip() for val in open(here / 'requirements.txt'))
setup(
name="aioremootio",
version="1.0.0.dev0",
description="An asynchronous API client library for Remootio (http://www.remootio.com/)",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/ivgg-me/aioremootio",
author="Gergö Gabor Ilyes-Veisz",
author_email="[email protected]",
classifiers=[
"Development Status :: 3 - Alpha",
"Framework :: AsyncIO",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Home Automation",
"Topic :: Software Development :: Libraries"
],
keywords="remootio, client, library, asynchronous",
package_dir={"": "src"},
packages=find_packages(where="src"),
python_requires=">=3.8",
install_requires=install_requires,
project_urls={
"Bug Tracker": "https://github.com/ivgg-me/aioremootio/issues",
"Source": "https://github.com/ivgg-me/aioremootio/"
}
)