-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.cfg
62 lines (57 loc) · 1.25 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
[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.9
install_requires =
aiohttp>=3.9.5,<4
protobuf>=5.27.1,<6
aiofiles>=24.1.0,<25
setup_requires =
setuptools_scm
[options.extras_require]
dev =
pytest
flake8
ipython
nox
black
isort
freezegun
later
pandas
matplotlib
[flake8]
max-line-length = 88
max-doc-length = 100
exclude =
.git,
__pycache__,
build,
dist,
.venv,
meteoblue_dataset_sdk/__init__.py,
meteoblue_dataset_sdk/protobuf/dataset_pb2.py,
meteoblue_dataset_sdk/protobuf/measurements_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