-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
104 lines (95 loc) · 2.24 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
[tool.poetry]
name = "dasf"
version = "1.0.beta.6"
description = "DASF is an Accelerated Framework for Machine Learning"
authors = ["Julio Faracco <[email protected]>"]
maintainers = ["Julio Faracco <[email protected]>"]
license = "MIT"
homepage = "https://github.com/lmcad-unicamp/dasf-core"
repository = "https://github.com/lmcad-unicamp/dasf-core"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"Environment :: GPU :: NVIDIA CUDA",
]
readme="README.md"
exclude = ["tests/*", "docs/*"]
[tool.poetry.dependencies]
bokeh = "2.4.3"
charset-normalizer = "<3.0"
dask = "2023.3.2"
dask_cuda = "23.4.0"
dask_jobqueue = "0.8.2"
dask_memusage = "^1.1"
dask_ml = "2023.3.24"
GPUtil = "1.4.0"
gdown = "^4.6"
graphviz = "0.20.1"
h5py = "3.10.0"
hdbscan = "0.8.33"
ipympl = "0.9.3"
ipywidgets = "^7.6.0"
joblib = "1.2.0"
jupyterlab = "^3.0.0"
#lightning = "2.4.0"
matplotlib = "3.7.1"
memray = "1.10.0"
networkx = "3.2.1"
numpy = "1.23.5"
ormsgpack = "1.4.1"
packaging = "23.1"
pandas = "1.5.2"
portalocker = "2.8.2"
protobuf = "<=3.20.1"
psutil = "5.9.4"
pyarrow = "^14.0.1"
python = "^3.10"
scikit-learn = "1.5.1"
tornado = "^6.3"
xarray = "2023.11.0"
xgboost = "1.7.5"
xpysom-dask = { git = "https://github.com/jcfaracco/xpysom-dask#egg=master" }
zarr = "2.16.1"
[tool.poetry.group.dev.dependencies]
black = "*"
coverage = "*"
flake8 = "*"
hpccm = "*"
interrogate = "*"
isort = "*"
mock = "*"
parameterized = "*"
pytest = "*"
pytest-cov = "*"
wheel = "*"
[tool.poetry.group.docs.dependencies]
sphinx = "*"
sphinx-autoapi = "*"
sphinx_rtd_theme = "*"
nbsphinx = "*"
pandoc = "*"
[tool.isort]
profile = "black"
[tool.coverage.paths]
source = ["dasf", "*/site-packages"]
[tool.coverage.run]
branch = true
source = ["dasf"]
[tool.coverage.report]
exclude_also = [
"except ImportError",
".*NV_COMP.*",
".*kvikio.*",
".*KVIKIO.*",
".*jax.*",
".*JAX.*",
]
[build-system]
requires = ["poetry-core>=1.1.10"]
build-backend = "poetry.core.masonry.api"