-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
74 lines (66 loc) · 1.76 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
74
[tool.poetry]
name = "cmonge"
version = "0.0.1"
description = "Extension of the Monge Gap to learn conditional optimal transport maps"
authors = ["Alice Driessen <[email protected]>", "Benedek Harsanyi <[email protected]>", "Jannis Born <[email protected]>"]
readme = "README.md"
keywords = [
"Machine Learning",
"Optimal Transport",
"Neural OT",
"Monge Gap",
"Conditional Distribution Learning"
]
homepage = "https://github.com/AI4SCR/conditional-monge"
repository = "https://github.com/AI4SCR/conditional-monge"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Artificial Intelligence"
]
[tool.poetry.group.dev.dependencies]
ruff = "*"
pytest = "*"
pre-commit = "*"
[tool.poetry.dependencies]
python = ">=3.10,<3.12"
flax = "0.7.4"
optax = "0.1.9"
ott-jax = "0.4.4"
scikit-learn = "^1.4.0"
typer = "^0.9.0"
loguru = "^0.7.2"
optuna = "^3.5.0"
pandas = "^2.0.0"
seaborn = "^0.13.2"
dotmap = "^1.3.30"
umap-learn = "^0.5.5"
jaxlib = "0.4.20"
anndata = "^0.10.5.post1"
scanpy = "^1.9.8"
chex = "^0.1.85"
rdkit = "^2023.9.5"
jax = "0.4.20"
isort = "^5.13.2"
black = "^24.4.2"
ruff = "^0.5.4"
types-pyyaml = "^6.0.12.20240311"
scipy = "1.12.0"
[[tool.poetry.source]]
name = "jax"
url = "https://storage.googleapis.com/jax-releases/jax_releases.html"
priority = "primary"
[[tool.poetry.source]]
name = "PyPI"
priority = "primary"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 120
lint.select = ["N8"]