-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
60 lines (51 loc) · 1.38 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
[tool.poetry]
name = "alchemical_queues"
version = "0.1.1"
description = "Task Queues on pure SQLAlchemy"
authors = ["Thijs Miedema <[email protected]>"]
license = "MIT"
packages = [{include = "alchemical_queues", from = "src" }]
[tool.pytest.ini_options]
minversion = "7.0"
addopts = "-ra --cov-config=.coveragerc --cov-report=xml"
required_plugins = "pytest-cov"
testpaths = "tests"
[tool.poetry.dependencies]
python = ">=3.7"
SQLAlchemy = "^1"
typing_extensions = "*"
[tool.poetry.dev-dependencies]
SQLAlchemy = {version = "^1", extras = ["mypy"]}
mkdocs-macros-plugin = "^0.7.0"
black = ">=22"
pytest = ">=7"
pytest-cov = "^4.0.0"
Mypy="*"
pylint=">=2"
anybadge = "*"
mkdocs = ">=1.4"
mkdocs-material = ">=8"
mike = ">=1"
mkdocstrings = { version = ">=0.19", extras = ["python"] }
[tool.poetry.scripts]
alchemical_worker = "alchemical_queues.tasks.cli:cli"
[tool.mypy]
python_version = "3.7"
plugins = "sqlalchemy.ext.mypy.plugin"
warn_unused_configs = true
exclude = ["meta/", "tests/"]
[[tool.mypy.overrides]]
module = "alchemical_queues.tasks"
warn_return_any = true
disallow_untyped_defs = true
warn_unreachable = true
[[tool.mypy.overrides]]
module = "alchemical_queues"
warn_return_any = true
disallow_untyped_defs = true
warn_unreachable = true
[tool.pylint.'MESSAGES CONTROL']
disable = ["R0903", "C0301"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"