-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
88 lines (80 loc) · 1.96 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
[tool.poetry]
name = "dasf"
version = "1.0.beta.5"
description = "DASF is an Accelerated Framework for Machine Learning"
authors = ["Julio Faracco <jcfaracco@gmail.com>"]
maintainers = ["Julio Faracco <jcfaracco@gmail.com>"]
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.8",
"Programming Language :: Python :: 3.9",
"Operating System :: OS Independent",
"Development Status :: 1 - Planning",
"Environment :: GPU :: NVIDIA CUDA",
]
readme="README.md"
exclude = ["tests/*", "docs/*"]
[tool.poetry.dependencies]
dacite = "*"
dask = "*"
dask_cuda = "*"
dask_jobqueue = "*"
dask_memusage = "*"
dask_ml = "*"
dask-pytorch-ddp = "*"
GPUtil = "*"
gdown = "^4.6"
graphviz = "*"
h5py = "*"
hdbscan = "*"
ipympl = "*"
matplotlib = "*"
memray = "*"
networkx = "*"
ormsgpack = "*"
packaging = "*"
portalocker = "*"
protobuf = "~=3.20.1"
psutil = "*"
pyarrow = "*"
python = "^3.8"
pytorch-lightning = "*"
scikit-learn = "*"
torchvision = "*"
xarray = "*"
xgboost = "*"
zarr = "*"
xpysom-dask = { git = "https://github.com/jcfaracco/xpysom-dask.git@aa6fb025ae473fdbf0f4abb9c40a0272bfefc00b" }
#xpysom = { git = "https://github.com/jcfaracco/xpysom/", branch = "dask2" }
[tool.poetry.group.dev.dependencies]
black = "*"
coverage = "*"
flake8 = "*"
hpccm = "*"
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"]
[build-system]
requires = ["poetry-core>=1.1.10"]
build-backend = "poetry.core.masonry.api"