forked from jabesq-org/pyatmo
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
61 lines (54 loc) · 1.47 KB
/
setup.cfg
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
51
52
53
54
55
56
57
58
59
60
61
[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 = [email protected]
license = MIT
license_file = LICENSE.txt
classifiers =
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
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
python_requires = ~=3.8
include_package_data = True
package_dir = =src
setup_requires =
setuptools-scm
[options.packages.find]
where = src
exclude = tests
[options.package_data]
pyatmo = py.typed
[flake8]
max-line-length = 88
ignore = W503, E501
[pep8]
max-line-length = 88
ignore = W503, E501
[mypy]
ignore_missing_imports = True
[isort]
multi_line_output = 3
include_trailing_comma = True
force_grid_wrap = 0
use_parentheses = True
forced_separate = tests
combine_as_imports = true
line_length = 88
skip_glob = venv
known_third_party = freezegun,oauthlib,pytest,requests,requests_oauthlib,setuptools,tests