-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
73 lines (67 loc) · 1.73 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[tool]
[tool.poetry]
name = "xe_likelihood"
version = "0.1.0"
homepage = "https://github.com/XENON1T/xe_likelihood"
description = "Binwise approximate inference for XENON1T and XENONnT experiments."
authors = [
"XENON collaboration <knut.dundas.moraa@columbia.edu>",
"Hagar Landsman <hagar.landsman@weizmann.ac.il>",
"Knut Dundas Morå <knut.dundas.moraa@columbia.edu>",
"Jacques Pienaar <jpienaar@uchicago.edu>",
]
readme = "README.rst"
license = "MIT"
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
]
packages = [
{ include = "xe_likelihood" },
]
include = [
{ path = "data/*" },
{ path = "data/ancillary_data/*" },
{ path = "data/xe1t_nr_1ty_result/*" },
{ path = "data/xent_nr_20ty_projection/*" },
]
[tool.poetry.dependencies]
python = "^3.7.1"
scipy = "*"
matplotlib = "*"
numpy = "*"
tqdm = "*"
pandas = "!=1.3.4"
wimprates = {version = "^0.3.2", optional = true}
click = "^8.0.3"
[tool.poetry.extras]
wimps = ["wimprates"]
[tool.poetry.dev-dependencies]
bumpversion = "*"
docutils = "0.12"
coverage = "*"
flake8 = "*"
isort = "*"
pylint = "*"
pytest = "*"
sphinx = "*"
tox = "*"
yapf = "*"
sphinx-material = "*"
nbsphinx = "0.8.3"
invoke = "*"
jupyter = "*"
jupyterlab = "*"
[tool.poetry.scripts]
xe-likelihood = "xe_likelihood.cli:main"
[build-system]
requires = ["poetry>=0.12", "setuptools"]
build-backend = "poetry.masonry.api"
[tool.dephell.main]
versioning = "semver"
from = {format = "poetry", path = "pyproject.toml"}
to = {format = "setuppy", path = "setup.py"}