-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
49 lines (44 loc) · 1.1 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
[tool]
[tool.poetry]
name = "xe-outsource"
version = "0.4.0"
description = "Job submission of reprocessing"
readme = "README.md"
authors = [
"Outsource contributors, the XENON collaboration",
]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Scientific/Engineering :: Physics",
]
repository = "https://github.com/XENONnT/outsource"
packages = [
{ include = "outsource" }
]
[tool.poetry.scripts]
outsource = "outsource.scripts.submit:main"
[tool.poetry.dependencies]
python = ">=3.8,<3.13"
xe-admix = "*"
numpy = "*"
tqdm = "*"
utilix = ">=0.9.1"
[build-system]
requires = ["poetry-core>=1.0.8", "setuptools>=61.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 100
preview = true
[tool.docformatter]
recursive = true
in-place = true
style = "sphinx"
wrap-summaries = 100
wrap-descriptions = 100
blank = true