-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
pyproject.toml
75 lines (69 loc) · 1.71 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
73
74
75
[tool.poetry]
name = "finalynx"
version = "1.23.0"
description = "A command line investment assistant to organize your portfolio and simulate its future to reach your life goals."
authors = ["MadeInPierre <pielaclau@gmail.com>"]
license = "GPLv3"
readme = "README.md"
packages = [{include = "finalynx"}]
include = [{ path = "finalynx/finary_api/**/*" }]
[tool.poetry.dependencies]
python = "^3.10"
rich = "12.0.1"
docopt = "0.6.2"
unidecode = "^1.3.6"
numpy = "^1.24.2"
nicegui = "^1.2.13"
finary-uapi = "^0.2.0"
html2image = "^2.0.3"
n26 = "^3.3.1"
iso18245 = "^1.2.0"
gspread = "^5.10.0"
pytz = "^2023.3"
[tool.poetry.group.dev.dependencies]
black = "^23.1.0"
flake8 = "^5.0.0"
pdoc3 = "^0.10.0"
commitizen = "^2.42.0"
pre-commit = "^3.0.4"
pytest = "^7.2.2"
pytest-mock = "^3.10.0"
sphinx = "^6.1.3"
myst-parser = "^0.19.1"
sphinx-rtd-theme = "^1.2.0"
sphinx-autodoc2 = "^0.4.2"
types-docopt = "^0.6.11.3"
types-requests = "^2.28.11.15"
mypy = "^1.1.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.semantic_release]
version_variable = [
"finalynx/__meta__.py:__version__",
"pyproject.toml:version",
"docs/conf.py:release"
]
branch = "main"
upload_to_pypi = true
upload_to_release = true
commit_subject = "chore(release): auto bump version to {version}"
build_command = "pip install poetry && poetry build"
[tool.commitizen]
name = "cz_conventional_commits"
version = "1.23.0"
tag_format = "v$version"
[tool.mypy]
exclude = [
"finary_api/*",
"docs/*",
"tests/*.py"
]
strict = true
check_untyped_defs = true
disallow_any_generics = true
disallow_incomplete_defs = true
disallow_untyped_defs = true
no_implicit_optional = true
no_namespace_packages = true
implicit_reexport = true