-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
62 lines (54 loc) · 1.44 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
[project]
name = "investd"
version = "0.0.1"
description = "Lightweight investment tracker"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Office/Business :: Financial :: Investment",
]
license = { file = "LICENSE.txt" }
authors = [{ name = "adri0" }]
dependencies = [
"click",
"ipython",
"jupyter",
"jupytext",
"openpyxl",
"pandas>2.0.0",
"pydantic",
"python-dotenv",
"PyYAML",
"seaborn",
"xlrd",
"yfinance",
]
[project.urls]
"Homepage" = "https://github.com/adri0/investd"
[project.optional-dependencies]
dev = ["ruff", "mypy", "types-python-dateutil", "types-PyYAML", "pandas-stubs"]
test = ["pytest", "pytest-cov", "pytest-dotenv"]
[project.scripts]
investd = "investd.__main__:main"
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["investd*"]
exclude = ["tests*"]
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "I", "RUF", "N", "ANN"]
ignore = ["ANN101", "ANN401"]
[tool.pytest.ini_options]
testpaths = ["tests"]
env_files = "tests/resources/.investd"
[tool.mypy]
packages = ["investd", "tests"]
plugins = "pydantic.mypy"
ignore_missing_imports = false
follow_imports = "silent"
disable_error_code = "import-untyped"