-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (59 loc) · 1.27 KB
/
pyproject.toml
File metadata and controls
67 lines (59 loc) · 1.27 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
[build-system]
build-backend = 'setuptools.build_meta'
requires = [
'setuptools>=77.0.0',
]
[project]
name = "xtrack"
dynamic = ["version"]
description = "Tracking library for particle accelerators"
readme = "README.md"
requires-python = ">=3.9"
license = "Apache-2.0"
authors = [
{ name = "G. Iadarola et al." }
]
dependencies = [
"numpy>=1.0",
"pandas>=2.0",
"scipy",
"tqdm",
"requests",
"xobjects",
"xdeps",
]
[project.urls]
"Homepage" = "https://xsuite.readthedocs.io/"
"Bug Tracker" = "https://github.com/xsuite/xsuite/issues"
"Documentation" = "https://xsuite.readthedocs.io/"
"Source Code" = "https://github.com/xsuite/xtrack"
"Download" = "https://pypi.python.org/pypi/xtrack"
[project.optional-dependencies]
tests = [
"cpymad",
"nafflib",
"PyHEADTAIL",
"pytest",
"pytest-mock",
"pymadng==0.8.1",
"requests-mock",
"tfs-pandas",
]
notebooks = [
"jupyter",
"ipympl",
"xplt"
]
[tool.setuptools.packages.find]
where = ["."]
include = ["xtrack*", "ducktrack*"]
[tool.setuptools.dynamic]
version = { attr = "xtrack._version.__version__" }
[tool.setuptools]
include-package-data = true
[project.entry-points.xobjects]
include = "xtrack"
[tool.pytest]
markers = [
"context_dependent: marks test as one that depends on the execution context",
]