-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
62 lines (52 loc) · 1.33 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
[tool.poetry]
name = "hnhm"
version = "0.0.11"
readme = "README.md"
description = "hNhM – highly Normalized hybrid Model."
keywords = ["hnhm", "datavault", "anchormodeling", "python"]
homepage = "https://marchinho11.github.io/hnhm"
repository = "https://github.com/marchinho11/hnhm"
documentation = "https://marchinho11.github.io/hnhm"
authors = ["Arseny Egorov <[email protected]>"]
maintainers = ["Arseny Egorov <[email protected]>"]
[tool.poetry.dependencies]
python = "~3.10"
pydantic = "~2.6"
click = "~8.1"
Jinja2 = "~3.1"
psycopg = {version = "~3.1", extras = ["binary"]}
[tool.poetry.group.dev.dependencies]
pre-commit = "~3.6"
pytest = "~8.0"
pytest-cov = "~4.1"
pygount = "~1.6"
bump-my-version = "~0.18"
[tool.poetry.scripts]
hnhm = "hnhm.cli:cli"
[tool.black]
line-length = 90
target-version = ["py310"]
[tool.isort]
profile = "black"
length_sort = true
force_sort_within_sections = true
[tool.coverage.report]
exclude_lines = [
"pass",
"raise NotImplementedError",
"def __repr__",
"def __str__",
"def __hash__",
"def __eq__"
]
[tool.bumpversion]
commit = false
tag = false
current_version = "0.0.11"
[[tool.bumpversion.files]]
filename = "pyproject.toml"
[[tool.bumpversion.files]]
filename = "hnhm/__init__.py"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"