-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (43 loc) · 1.15 KB
/
pyproject.toml
File metadata and controls
50 lines (43 loc) · 1.15 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
[build-system]
requires = [
"setuptools>=77.0"
]
build-backend = "setuptools.build_meta"
[project]
name = "xobjects"
dynamic = ["version"]
description = "In-memory serialization and code generator for CPU and GPU"
readme = "README.md"
authors = [
{ name = "Riccardo De Maria", email = "riccardo.de.maria@cern.ch" }
]
license = "Apache-2.0"
requires-python = ">=3.9"
dependencies = [
"numpy",
"cffi",
"scipy"
]
[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/xobjects"
"Download" = "https://pypi.python.org/pypi/xobjects"
[project.optional-dependencies]
tests = ["pytest", "pytest-mock"]
[tool.setuptools.packages.find]
where = ["."]
include = ["xobjects*"]
[tool.setuptools.dynamic]
version = {attr = "xobjects._version.__version__"}
[tool.black]
line-length = 79
target-version = ['py310', 'py311', 'py312']
include = '\.pyi?$'
[project.entry-points.xobjects]
include = "xobjects"
[pytest]
markers = [
"context_dependent: marks test as one that depends on the execution context",
]