forked from jabesq/netatmo-api-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·23 lines (21 loc) · 765 Bytes
/
setup.py
File metadata and controls
executable file
·23 lines (21 loc) · 765 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# python setup.py --dry-run --verbose install
# To build: python setup.py sdist bdist_wheel
from setuptools import find_packages, setup
setup(
name="pyatmo",
version="3.3.0", # Should be updated with new versions
author="Hugo Dupras",
author_email="jabesq@gmail.com",
packages=find_packages(exclude=["tests"], where="src"),
package_dir={"": "src"},
scripts=[],
data_files=[],
url="https://github.com/jabesq/netatmo-api-python",
license="MIT",
description=(
"Simple API to access Netatmo weather station data from any Python 3 script. "
"Design for Home-Assitant (but not only)"
),
long_description=open("README.md").read(),
install_requires=["requests", "requests_oauthlib", "oauthlib"],
)