-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
74 lines (65 loc) · 1.74 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
63
64
65
66
67
68
69
70
71
72
73
74
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.setuptools.packages.find]
where = ["msdbook"]
[tool.setuptools.package-data]
msdbook = ["*.txt", "*.csv", "*.npy", "*.resultfile"]
[project]
name = "msdbook"
version = "0.1.5"
description = "Jupyter notebook support for the MSD uncertainty ebook."
readme = "README.md"
requires-python = ">=3.9, <3.13"
keywords = ["uncertainty characterization", "MSD", "MultiSector Dynamics"]
authors = [
{ name="Chris R. Vernon", email="[email protected]" },
{ name="Em Rexer", email="[email protected]" },
]
classifiers = [
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"hmmlearn>=0.3.2",
"importlib-metadata==4.11.3",
"importlib-resources==5.7.1",
"matplotlib>=3.9.1",
"numpy<2",
"pandas>=2.2.2",
"requests>=2.32.3",
"SALib>=1.4.7",
"scikit-learn>=1.5.1",
"scipy>=1.13.1",
"seaborn>=0.13.2",
"statsmodels>=0.14.2",
]
[project.optional-dependencies]
dev = [
"pre-commit>=3.7.1",
]
docs = [
"autodoc>=0.5.0",
"build>=0.5.1",
"ipython>=8.0.1",
"mathjax>=0.1.2",
"nbsphinx>=0.8.6",
"setuptools>=57.0.0",
"sphinx>=4.0.2",
"sphinx-book-theme>=0.2.0",
"sphinxcontrib-bibtex>=2.4.1",
"twine>=3.4.1",
]
test = [
"pytest>=7.0.0",
"pytest-mock>=3.10",
]
[project.urls]
Homepage = "https://uc-ebook.org/"
Repository = "https://github.com/IMMM-SFA/msd_uncertainty_ebook"
Issues = "https://github.com/IMMM-SFA/msd_uncertainty_ebook/issues"