-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
38 lines (33 loc) · 1022 Bytes
/
pyproject.toml
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
# copyright ############################### #
# This file is part of the Xboinc Package. #
# Copyright (c) CERN, 2023. #
# ######################################### #
[tool.poetry]
name = "xboinc"
version = "0.1.6"
description = "Xsuite BOINC interface"
homepage = "https://github.com/xsuite/xboinc"
repository = "https://github.com/xsuite/xboinc"
authors = [
"Frederik F. Van der Veken <[email protected]>",
"Davide Di Croce <[email protected]>",
"Giovanni Iadorala <[email protected]>"
]
readme = "README.md"
license = "Apache 2.0"
include = [ "LICENSE", "NOTICE" ]
[tool.poetry.dependencies]
python = '>=3.8'
numpy = '>=1.0'
xobjects = '==0.2.10'
xdeps = '==0.5.2'
xpart = '==0.16.3'
xtrack = '==0.48.1'
xfields = '==0.15.0'
xcoll = '==0.2.7'
[tool.poetry.dev-dependencies]
pytest = ">7"
[build-system]
# Needed for pip install -e (BTW: need pip version 22)
requires = ["poetry-core>=1.0.8"]
build-backend = "poetry.core.masonry.api"