forked from janushendersonassetallocation/loman
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (66 loc) · 1.63 KB
/
pyproject.toml
File metadata and controls
72 lines (66 loc) · 1.63 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
64
65
66
67
68
69
70
71
72
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "loman"
version = "0.5.3"
authors = [
{ name="Ed Parcell", email="edparcell@gmail.com" },
]
description = "Loman tracks state of computations, and the dependencies between them, allowing full and partial recalculations."
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries"
]
license = "BSD-3-Clause"
license-files = ["LICEN[CS]E*"]
dependencies = [
"decorator",
"matplotlib",
"numpy",
"pydotplus",
"dill >= 0.2.5",
"networkx >= 2.0",
"pandas >= 0.19.2"
]
[project.optional-dependencies]
test = [
"attrs",
"pytest"
]
dev = [
"pytest>=7.0",
"pytest-cov>=4.0",
"ruff>=0.12.0",
"pre-commit>=3.0",
"mypy>=1.0",
"marimo>=0.15",
]
[project.urls]
Homepage = "https://github.com/janusassetallocation/loman"
[tool.hatch.build.targets.wheel]
packages = ["src/loman"]
[tool.deptry]
known_first_party = ["loman"]
pep621_dev_dependency_groups = ["test", "dev"]
per_rule_ignores = {DEP002 = ["pytest", "pytest-cov", "ruff", "pre-commit", "mypy", "marimo", "attrs"], DEP004 = ["attrs"]}
[tool.deptry.package_module_name_map]
pre-commit = "pre_commit"
pytest-cov = "pytest_cov"
matplotlib = "matplotlib"
pydotplus = "pydotplus"
decorator = "decorator"
networkx = "networkx"
marimo = "marimo"
pandas = "pandas"
pytest = "pytest"
attrs = "attrs"
numpy = "numpy"
mypy = "mypy"
ruff = "ruff"
dill = "dill"