forked from jabesq-org/pyatmo
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.cfg
More file actions
50 lines (44 loc) · 1.23 KB
/
setup.cfg
File metadata and controls
50 lines (44 loc) · 1.23 KB
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
47
48
49
50
[metadata]
name = pyatmo
description = Simple API to access Netatmo weather station data from any Python 3 script. Designed for Home Assistant (but not only)
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/jabesq/pyatmo
author = Hugo Dupras
author_email = jabesq@gmail.com
license = MIT
license_files = LICENSE.txt
classifiers =
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Topic :: Home Automation
[options]
packages = find:
install_requires =
aiohttp>=3.7.4,<4.0.0
oauthlib~=3.1
requests~=2.24
requests-oauthlib>=1.3,<3.0
python_requires = >=3.10
include_package_data = True
package_dir = =src
setup_requires =
setuptools-scm
[options.packages.find]
where = src
exclude = tests
[options.package_data]
pyatmo = py.typed
[pep8]
max-line-length = 88
ignore = W503, E501
[mypy]
ignore_missing_imports = True
[isort]
profile = black