-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (46 loc) · 1.09 KB
/
pyproject.toml
File metadata and controls
54 lines (46 loc) · 1.09 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
[build-system]
build-backend = 'setuptools.build_meta'
requires = [
'setuptools>=77.0.0',
]
[project]
name = "xfields"
dynamic = ["version"]
description = "Field Maps and Particle In Cell"
readme = "README.md"
license = "Apache-2.0"
authors = [
{name = "G. Iadarola et al."}
]
dependencies = [
"numpy>=1.0",
"scipy",
"pandas",
"xobjects>=0.0.4",
"xtrack>=0.0.1",
]
requires-python = ">=3.10"
[project.urls]
Homepage = "https://xsuite.readthedocs.io/"
Documentation = "https://xsuite.readthedocs.io/"
Source = "https://github.com/xsuite/xfields"
"Bug Tracker" = "https://github.com/xsuite/xsuite/issues"
Download = "https://pypi.python.org/pypi/xfields"
[project.optional-dependencies]
tests = [
"pytest",
"h5py"
]
[tool.setuptools.packages.find]
where = ["."]
include = ["xfields*"]
[tool.setuptools.dynamic]
version = { attr = "xfields._version.__version__" }
[tool.setuptools]
include-package-data = true
[project.entry-points.xobjects]
include = "xfields"
[tool.pytest]
markers = [
"context_dependent: marks test as one that depends on the execution context",
]