-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
34 lines (31 loc) · 998 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
[tool.poetry]
name = "glcm_cupy"
version = "0.2.1"
description = "Binned GLCM 5 Features implemented in CuPy"
authors = ["Evening"]
license = "MIT"
homepage = "https://github.com/Eve-ning/glcmbin5_cupy"
repository = "https://github.com/Eve-ning/glcmbin5_cupy"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: GPU :: NVIDIA CUDA",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Image Recognition",
"Topic :: Scientific/Engineering :: Image Processing",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
readme="README.md"
exclude = ["tests/*"]
[tool.poetry.dependencies]
python = ">=3.9"
scikit-image = "^0.22.0"
tqdm = "^4.66.1"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.2"
cupy-cuda12x = "^12.2.0"
matplotlib = "^3.8.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"