-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (49 loc) · 1.64 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "onemod"
version = "0.3.0"
description = "A pipeline package for estimating scalar quantity by leveraging covariates and correlations across multiple dimensions."
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE" }
authors = [
{ name = "IHME Math Sciences", email = "[email protected]" },
]
classifiers = [
"License :: OSI Approved :: BSD License",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Programming Language :: Python :: 3",
]
dependencies = [
"fire",
"loguru",
"matplotlib",
"modrover @ git+https://github.com/ihmeuw-msca/[email protected]",
"spxmod @ git+https://github.com/ihmeuw-msca/[email protected]",
"pandas",
"pyarrow",
"pydantic",
"scipy",
"seaborn",
"regmod == 0.1.2",
"weighted-average >= 1.3.0",
]
[project.optional-dependencies]
jobmon = ["jobmon_installer_ihme"]
test = ["pytest", "nox"]
docs = ["sphinx", "sphinx-autodoc-typehints", "furo"]
[project.urls]
github = "https://github.com/ihmeuw-msca/OneMod"
[project.scripts]
onemod = "onemod.main:main"
initialize_results = "onemod.actions.data.initialize_results:main"
collect_results = "onemod.actions.data.collect_results:main"
delete_results = "onemod.actions.data.delete_results:main"
rover_covsel_model = "onemod.actions.models.rover_covsel_model:main"
spxmod_model = "onemod.actions.models.spxmod_model:main"
weave_model = "onemod.actions.models.weave_model:main"
ensemble_model = "onemod.actions.models.ensemble_model:main"