-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
51 lines (44 loc) · 1018 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
39
40
41
42
43
44
45
46
47
48
49
50
51
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "abismal"
authors=[
{name="Kevin M. Dalton", email="[email protected]"}
]
description = "Stochastic merging for diffraction data."
readme = "README.md"
dynamic = ["version"]
requires-python = ">= 3.9,<3.13"
dependencies = [
"reciprocalspaceship>=0.9.16",
"tqdm",
"tensorflow-probability[tf]==0.25",
"tensorflow==2.18.0",
"matplotlib",
"seaborn",
"rs-booster",
"ray",
]
license={text = "MIT"}
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
"pytest-xdist",
]
cuda = [
"tensorflow[and-cuda]==2.18.0",
]
[project.urls]
Repository = "https://github.com/rs-station/abismal"
Issues = "https://github.com/rs-station/abismal/issues"
[project.scripts]
abismal = "abismal.command_line.abismal:main"
[tool.pytest.ini_options]
addopts = "-n auto"
testpaths = [
"tests",
]
[tool.setuptools.dynamic]
version = {file = "abismal/VERSION"}