-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsetup.py
executable file
·46 lines (41 loc) · 1.28 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
43
44
45
46
# Copyright (c) 2017-2022 John Mihalic <https://github.com/mezz64>
# Licensed under the MIT license.
# Used this guide to create module
# http://peterdowns.com/posts/first-time-with-pypi.html
# git tag 0.1 -m "0.1 release"
# git push --tags origin master
#
# Upload to PyPI Live
# python setup.py register -r pypi
# python setup.py sdist upload -r pypi
from distutils.core import setup
setup(
name="pyEight",
packages=["pyeight"],
version="0.3.2",
description="Provides a python api to interact with an Eight Sleep mattress cover.",
author="John Mihalic",
author_email="[email protected]",
url="https://github.com/mezz64/pyEight",
download_url="https://github.com/mezz64/pyeight/tarball/0.3.2",
keywords=[
"eight",
"eightsleep",
"eight sleep",
"sleep",
"mattress",
"api wrapper",
"homeassistant",
],
license="MIT",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Libraries",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
install_requires=["aiohttp"],
python_requires=">=3.9",
)