This repository has been archived by the owner on Dec 4, 2020. It is now read-only.
forked from philippelt/netatmo-api-python
-
Notifications
You must be signed in to change notification settings - Fork 34
/
setup.cfg
70 lines (60 loc) · 1.65 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
62
63
64
65
66
67
68
69
70
[metadata]
name = pyatmo
version = attr:version.__version__
description = Simple API to access Netatmo weather station data from any Python 3 script. Designed for Home-Assitant (but not only)
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/jabesq/netatmo-api-python
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.7
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:
py_modules = version
install_requires =
oauthlib~=3.1
requests~=2.24
requests_oauthlib~=1.3
python_requires = ~=3.7
package_dir = =src
[options.packages.find]
exclude = tests
where = src
[flake8]
max-line-length = 88
ignore = W503, E501
[pep8]
max-line-length = 88
ignore = W503, E501
[mypy]
ignore_errors = True
ignore_missing_imports = True
[mypy-pyatmo.auth]
ignore_errors = False
[mypy-pyatmo.camera]
ignore_errors = False
[mypy-pyatmo.exceptions]
ignore_errors = False
[mypy-pyatmo.helpers]
ignore_errors = False
[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