forked from meteoblue/python-dataset-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
60 lines (54 loc) · 1.16 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
[metadata]
name = meteoblue_dataset_sdk
description = Easy access to the meteoblue dataset API
author = meteoblue AG
author_email = [email protected]
long_description = file: README.md
long_description_content_type = text/markdown
license = MIT License
url = https://github.com/meteoblue/python-dataset-sdk
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: MIT License
keywords =
meteoblue
[options]
packages = find:
include_package_data = True
python_requires = >=3.7
install_requires =
aiohttp>=3.6,<4
protobuf>=3.0,<4
aiofiles>=0.6.0,<1
setup_requires =
setuptools_scm
[options.extras_require]
dev =
pytest
flake8
ipython
nox
black
isort
freezegun
later
[flake8]
max-line-length = 88
max-doc-length = 100
exclude =
.git,
__pycache__,
build,
dist,
.venv,
meteoblue_dataset_sdk/__init__.py,
meteoblue_dataset_sdk/Dataset_pb2.py
[isort]
line_length = 88
multi_line_output = 3
include_trailing_comma = True
known_third_party = nox,pkg_resources,setuptools,aiohttp,aiofiles,protobuf
[black]
max_line_length = 88
line_length = 79
max-doc-length = 100