-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
90 lines (84 loc) · 2.11 KB
/
pyproject.toml
File metadata and controls
90 lines (84 loc) · 2.11 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# This section describes the requirements of the build/installation
# process itself. Being able to do this was the original reason to
# introduce pyproject.toml
[build-system]
requires = [
"setuptools >=61",
]
build-backend = "setuptools.build_meta"
# This section provides general project metadata that is used across
# a variety of build tools. Notably, the version specified here is the
# single source of truth for CASBI's version
[project]
name = "CASBI"
description = "Add short description here"
readme = "README.md"
maintainers = [
{ name = "Your Name", email = "your@email.com" },
]
version = "0.0.1"
requires-python = ">=3.10"
license = { text = "MIT" }
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
]
dependencies = [
"sphinx-autodoc2",
"click",
"lightning == 2.2.4",
"ltu-ili@git+https://github.com/maho3/ltu-ili",
"FrEIA",
"matplotlib >= 3.7.1",
"myst-nb",
"numpy >= 1.26.4",
"optuna == 3.6.0",
"pandas >= 1.5.3",
"pyyaml",
"pyarrow == 15.0.2",
"pynbody >= 1.6.0",
"pyparsing",
"seaborn >= 0.12.2",
"scikit-learn >= 1.4.1",
"scipy == 1.13.0",
"sbibm",
"tensorboard >= 2.16.2",
"torch > 2.2.2",
"torchvision",
"tqdm >= 4.65.0",
"ytree >= 3.2.1",
]
[project.optional-dependencies]
tests = [
"pytest",
"pytest-cov",
"nbval",
]
docs = [
"sphinx",
"sphinx_copybutton",
"sphinx_design",
"sphinx_book_theme",
"ipykernel",
"sphinx_mdinclude",
"sphinx_rtd_theme",
"furo",
]
# Command line scripts installed as part of the installation
[project.scripts]
CASBI = "CASBI.__main__:main"
# The following section contains setuptools-specific configuration
# options. For a full reference of available options, check the overview
# at https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html
[tool.setuptools]
packages = [
"CASBI",
"CASBI.utils",
]
# The following is the configuration for the pytest test suite
[tool.pytest.ini_options]
testpaths = [
"tests",
"notebooks",
]