-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
62 lines (54 loc) · 1.23 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool]
rye = { dev-dependencies = [
"pytest>=8.1.2",
"pytest-cov>=5.0.0",
"pytest-timeout>=2.3.1",
"numpy>=1.26.4",
] }
[tool.hatch.build.targets.wheel]
src-dir = "src"
[project]
name = "heavylight"
version = "1.0.9"
authors = [
{ name="Lewis Fogden", email="[email protected]" },
{ name="Matthew Caseres", email="[email protected]"}
]
description = "Heavylight Actuarial Modelling Framework"
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"pandas>=1.2",
]
[project.optional-dependencies]
dev = [
"pytest==7.4.3",
"pytest-cov",
"pytest-timeout",
"numpy"
]
docs = [
"mkdocs",
"mkdocstrings[python]",
"mkdocs-material",
"mkdocs-jupyter"
]
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]
testpaths = [
"tests",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
"Homepage" = "https://github.com/lewisfogden/heavylight/"
"Bug Tracker" = "https://github.com/lewisfogden/heavylight/issues"
"Documentation" = "https://lewisfogden.github.io/heavylight/"