-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
88 lines (81 loc) · 2.04 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
76
77
78
79
80
81
82
83
84
85
86
87
88
[tool.poetry]
name = "investporto"
version = "0.1.0"
description = "Investment portfolio management"
authors = ["sebastianpfischer <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [
{ include = "investporto", from = "src" }
]
keywords = [
"investment",
"portfolio",
"tool",
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Financial and Insurance Industry",
"License :: OSI Approved :: MIT License",
"Operating System :: Unix",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Office/Business :: Financial :: Investment",
]
[tool.poetry.dependencies]
python = "^3.10"
click = "^8.1.3"
PyYAML = "^6.0"
pyzipper = "^0.3.6"
pandas = "^1.5.0"
anytree = "^2.8.0"
rich = "^12.6.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.1.3"
pytest-mock = "^3.8.2"
coverage = "^6.4.4"
invoke = "^1.7.1"
pdbpp = "^0.10.3"
Sphinx = "^5.1.1"
sphinx-rtd-theme = "^1.0.0"
sphinx-rtd-dark-mode = "^1.2.4"
sphinxcontrib-programoutput = "^0.17"
sphinx-autodoc-typehints = "^1.19.2"
pytest-cov = "^3.0.0"
pytest-html = "^3.1.1"
[tool.poetry.scripts]
investporto = 'investporto.cli:main'
[tool.pytest.ini_options]
testpaths = [
"tests/"
]
addopts = """
--no-cov
"""
#addopts = """\
# --verbose \
# --log-level=INFO \
# --cov=./src/investporto/ \
# --cov=. \
# --cov-report=html \
# --cov-report html:./tests/coverage_report.html \
# --cov-config=.coveragerc
# """
[tool.coverage.run]
omit = [
"*/tests/*",
"*/docs/*",
"*/tasks.py",
"*__init__.py",
]
[tool.coverage.report]
exclude_lines = ["pass", "def __repr__" ,"pragma: no cover","if TYPE_CHECKING:"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"