-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
27 lines (25 loc) · 1.04 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
from os import path
from setuptools import setup, find_packages
with open(path.join(".", 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(name="automate-home",
version="0.9.1",
description="A python3 library to automate (home) devices",
url="https://github.com/majamassarini/automate-home",
long_description=long_description,
long_description_content_type='text/markdown',
author="Maja Massarini",
author_email="[email protected]",
license="GPLv3",
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.8",
"Topic :: Communications",
"Intended Audience :: Developers",
],
packages=find_packages(exclude=[]),
include_package_data=True,
install_requires=['APScheduler', 'hiredis==1.1.0', 'aioredis==1.3.1', 'ephem', 'pytz', 'PyYAML']
)