-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (46 loc) · 1.22 KB
/
pyproject.toml
File metadata and controls
55 lines (46 loc) · 1.22 KB
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
[project]
name = "stringart-ai"
version = "0.0.1"
authors = [
{ name="Adrian Mincu", email="mincu.adrian13@gmail.com" },
]
description = "StringArt AI is a Python-based package used to generate string art configurations from an input image using different AI methods."
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
'stringart @ git+https://github.com/skpha13/Procedural-Computing-of-String-Art.git@main',
'scikit-image~=0.25',
'numpy~=2.2',
'pandas~=2.2',
'tqdm~=4.67',
'torch~=2.6',
'torchvision~=0.21',
'scikit-learn~=1.6',
'matplotlib~=3.10',
'python-dotenv~=1.1',
'torchmetrics~=1.7',
]
[project.optional-dependencies]
dev = [
'pytest~=8.3',
'black~=24.10',
'isort~=5.13',
]
[tool.pytest.ini_options]
minversion = "8.3"
addopts = "-ra"
testpaths = [
"tests",
]
[project.urls]
Homepage = "https://github.com/skpha13/StringArt-AI"
Issues = "https://github.com/skpha13/StringArt-AI/issues"
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["stringart_ai", "stringart_ai.*"]