-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (44 loc) · 998 Bytes
/
Copy pathpyproject.toml
File metadata and controls
47 lines (44 loc) · 998 Bytes
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
[project]
name = "mudpod"
version = "0.2"
description = " Testing Unimodality in Multivariate Euclidean Space"
authors = [
{name = "Prodromos Kolyvakis", email = "prokolyvakis@gmail.com"},
]
dependencies = [
"diptest>=0.5.2",
"loguru>=0.7.0",
"scikit-learn>=1.2.2",
"scipy>=1.9.3",
"setuptools>=67.7.2",
"torch>=2.0.0",
]
requires-python = ">=3.9"
readme = "README.md"
license = {text = "AGPL-3.0-or-later"}
[build-system]
requires = ["pdm-pep517>=1.0"]
build-backend = "pdm.pep517.api"
[[tool.pdm.source]]
type = "find_links"
url = "https://download.pytorch.org/whl/cpu/torch_stable.html"
name = "torch"
[tool.pdm.dev-dependencies]
core = []
test = [
"docopt>=0.6.2",
"mypy>=1.2.0",
"plotly>=5.14.1",
"pylint>=2.17.2",
"pytest>=7.3.1",
]
exps = [
"datasets>=2.8.0",
"docopt>=0.6.2",
"pillow>=9.5.0",
"plotly>=5.14.1",
"setuptools-rust>=1.6.0",
"torchvision>=0.15.2",
"transformers>=4.28.1",
"umap-learn>=0.5.3",
]