-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
68 lines (60 loc) · 1.52 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
[build-system]
requires = ["setuptools>=75.0", "setuptools_scm[toml]"]
build-backend = "setuptools.build_meta"
[project]
name = "lume-model"
description = "Data structures used in the LUME modeling toolset."
readme = "README.md"
authors = [
{ name = "SLAC National Accelerator Laboratory"},
]
keywords = ["machine learning", "accelerator physics"]
classifiers = [
"Natural Language :: English",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
]
requires-python = ">=3.10"
dependencies = [
"pydantic",
"numpy",
"pyyaml"
]
dynamic = ["version"]
[tool.setuptools_scm]
version_file = "lume_model/_version.py"
[project.optional-dependencies]
dev = [
"botorch<0.11",
"pre-commit",
"ruff",
"pytest"
]
docs = [
"mkdocs",
"mkdocstrings",
"mkdocstrings-python",
"mkdocs-material"
]
[project.urls]
Homepage = "https://github.com/slaclab/lume-model"
Documentation = "https://slaclab.github.io/lume-model/"
"Bug Tracker" = "https://github.com/slaclab/lume-model/issues"
[project.license]
file = "LICENSE"
[options]
zip_safe = false
include_package_data = true
[tool.setuptools.packages.find]
include = [ "lume_model", ]
namespaces = false
[tool.ruff]
[tool.pytest.ini_options]
log_cli_level = "info"
log_level = "debug"
testpaths = ["tests"]