-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (54 loc) · 1.82 KB
/
pyproject.toml
File metadata and controls
64 lines (54 loc) · 1.82 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
[project]
name = "xcoll"
version = "0.9.11"
description = "Xsuite collimation package"
authors = [
{name="Frederik F. Van der Veken", email="frederik@cern.ch"},
{name="Simone O. Solstrand", email="simone.otelie.solstrand@cern.ch"},
{name="Björn Lindstrom", email="bjorn.lindstrom@cern.ch"},
{name="Giacomo Broggi", email="giacomo.broggi@cern.ch"},
{name="André Donadon Servelle", email="andre.donadon.servelle@cern.ch"},
{name="Dora E. Veres", email="dora.erzsebet.veres@cern.ch"},
{name="Despina Demetriadou", email="despina.demetriadou@cern.ch"},
{name="Andrey Abramov", email="andrey.abramov@cern.ch"},
{name="Giovanni Iadarola", email="giovanni.iadarola@cern.ch"}
]
readme = "README.md"
license = {text="Apache-2.0"}
requires-python = ">=3.10"
dependencies = [
"ruamel-yaml>=0.17.31",
"numpy>=1.0",
"pandas>=1.4",
"xobjects>=0.5.14",
"xdeps>=0.10.12",
"xpart>=0.23.9",
"xtrack>=0.100.1",
"meson"
]
[project.optional-dependencies]
tests = ["pytest", "pytest-html", "pytest-xdist"]
[project.urls]
homepage = "https://github.com/xsuite/xcoll"
repository = "https://github.com/xsuite/xcoll"
documentation = "https://xsuite.readthedocs.io/"
"Bug Tracker" = "https://github.com/xsuite/xsuite/issues"
download = "https://pypi.python.org/pypi/xcoll"
[project.entry-points.xobjects]
include = "xcoll"
[tool.poetry]
exclude = ["xcoll/lib", "xcoll/config"]
[poetry.group.dev.dependencies]
pytest = ">=7.3"
xaux = ">=0.3.12"
[build-system]
# Needed for pip install -e (BTW: need pip version 22)
requires = ["poetry-core>=2.0"]
build-backend = "poetry.core.masonry.api"
# pyproject.toml
#[tool.pytest.ini_options]
#addopts = "-ra --durations=10 --durations-min=1"
#python_functions = ["test_"]
#testpaths = [
# "tests",
#]