-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
72 lines (64 loc) · 1.83 KB
/
pyproject.toml
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
71
72
[tool.poetry]
name = "pydatagovgr"
version = "0.3.0"
description = "A Pythonic client for the official https://data.gov.gr API."
authors = ["ilias-ant <[email protected]>"]
readme = "README.md"
license = "MIT"
homepage = "https://pypi.org/project/pydatagovgr"
documentation = "https://pydatagovgr.readthedocs.io"
repository = "https://github.com/ilias-ant/pydatagovgr"
keywords = ["client", "pip", "govgr", "open-data"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Natural Language :: Greek",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3 :: Only",
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/ilias-ant/pydatagovgr/issues"
[tool.poetry.dependencies]
python = ">=3.7,<3.12"
requests = "~2.25.1"
[tool.poetry.dev-dependencies]
black = "^22.6.0"
isort = "^5.10.1"
pytest = "^7.2.0"
pytest-cov = "^3.0.0"
responses = "^0.21.0"
mkdocs = "^1.3.1"
mkdocs-material = "^8.3.9"
mkdocstrings = {version = "^0.19.0", extras = ["python"]} # ModuleNotFoundError: No module named 'mkdocstrings.handlers.python'
[tool.black]
line-length = 88
skip-string-normalization = true
target-version = ['py37', 'py38']
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| \.pytest_cache
| \.test_coverage
| _build
| buck-out
| build
| dist
)/
'''
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
filterwarnings = [] # https://docs.pytest.org/en/stable/warnings.html
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"