forked from ax3l/pydantic-mad
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (48 loc) · 1.49 KB
/
pyproject.toml
File metadata and controls
52 lines (48 loc) · 1.49 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
[build-system]
requires = ["setuptools >= 77", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pals_schema"
version = "0.2.0"
dependencies = [
"pydantic",
"pyyaml",
"toml",
]
requires-python = ">=3.11"
authors = [
{ name="Axel Huebl", email="axelhuebl@lbl.gov" },
{ name="Edoardo Zoni", email="ezoni@lbl.gov" },
]
maintainers = [
{ name="Axel Huebl", email="axelhuebl@lbl.gov" },
{ name="Edoardo Zoni", email="ezoni@lbl.gov" },
]
description = "Python implementation for the Particle Accelerator Lattice Standard (PALS)"
readme = "README.md"
license = "BSD-3-Clause-LBNL"
license-files = ["LICEN[CS]E*"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: Pydantic :: 2",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Topic :: Software Development",
]
[project.optional-dependencies]
test = ["pytest"]
[project.urls]
Documentation = "https://pals-project.readthedocs.io"
Repository = "https://github.com/campa-consortium/pals-python"
Issues = "https://github.com/campa-consortium/pals-python/issues"
[tool.setuptools.packages.find]
where = ["src"]