-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (47 loc) · 1.12 KB
/
pyproject.toml
File metadata and controls
56 lines (47 loc) · 1.12 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
56
[project]
name = "stringart"
version = "0.0.1"
authors = [
{ name="Adrian Mincu", email="mincu.adrian13@gmail.com" },
]
description = "StringArt is a Python-based package used to generate string art configurations from an input image."
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
'numpy~=2.1',
'imageio~=2.36',
'scikit-image~=0.24',
'scikit-learn~=1.6',
'scipy~=1.14',
'matplotlib~=3.9',
'pulp~=3.0',
'cvxopt~=1.3',
'tqdm~=4.67',
'imageio~=2.37',
]
[project.optional-dependencies]
dev = [
'pytest~=8.3',
'black~=24.10',
'isort~=5.13',
'imageio-ffmpeg~=0.6',
]
[tool.pytest.ini_options]
minversion = "8.3"
addopts = "-ra"
testpaths = [
"tests",
"integration",
]
[project.urls]
Homepage = "https://github.com/skpha13/cvx-rayopt/"
Issues = "https://github.com/skpha13/cvx-rayopt/issues"
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["stringart", "stringart.*"]