-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (55 loc) · 1.51 KB
/
Copy pathpyproject.toml
File metadata and controls
63 lines (55 loc) · 1.51 KB
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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "fintoolsom"
dynamic = ["version"]
description = "Personal library for finantial calculations"
readme = "README.md"
license = { file = "LICENSE" }
authors = [
{ name = "Oliver Mohr B.", email = "oliver.mohr.b@gmail.com" },
]
keywords = ["fixed income", "dates", "rates", "curves"]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Developers",
"Topic :: Office/Business :: Financial",
"Natural Language :: English",
]
requires-python = ">=3.11"
dependencies = [
"numpy",
"pandas",
"scipy",
"holidays>=0.58",
"python-dateutil",
]
[project.urls]
Homepage = "https://github.com/oliverm91/fintoolsom"
[dependency-groups]
dev = [
"commitizen>=4.16.4",
"pytest",
"ruff",
]
[tool.commitizen]
name = "cz_conventional_commits"
version_provider = "scm"
update_changelog_on_bump = true
tag_format = "v$version"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.targets.wheel]
packages = ["src/fintoolsom"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]