Setup Python project and CI
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
2023-05-20 14:25:39 +02:00
parent 6429d9e6ee
commit b10f01d30b
6 changed files with 128 additions and 0 deletions

57
pyproject.toml Normal file
View File

@ -0,0 +1,57 @@
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "globtables"
version = "0.0.1"
requires-python = ">=3.9"
dependencies = [
"flask == 2.*",
]
[project.optional-dependencies]
testing = [
"pytest",
"pytest-mock",
"requests-mock",
"types-requests",
"types-setuptools",
]
[tool.isort]
profile = "black"
[tool.mypy]
python_version = "3.9"
[[tool.mypy.overrides]]
module = [
"requests_mock",
]
ignore_missing_imports = true
[tool.pylint.format]
max-line-length = "88"
py-version = "3.9"
disable = [
# too annoying:
"fixme",
"invalid-name",
"no-else-return",
"no-else-continue",
"too-few-public-methods",
"too-many-instance-attributes",
# false positives:
"unreachable",
"assignment-from-no-return",
# mypy does it better:
"no-member",
"unsupported-membership-test",
"import-error",
# flake8 does it already:
"line-too-long",
]
[tool.pytest.ini_options]
python_files = "*_test.py"