-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (37 loc) · 972 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
35
36
37
38
39
40
41
42
[project]
name = "simetri"
version = "0.0.4"
description = "simetri is a Python library for creating and manipulating patterns."
readme = "README.md"
authors = [
{ name = "Fahri Basegmez", email = "mangabasi@gmail.com" }
]
requires-python = ">=3.9"
dependencies = [
"ipython>=8.18.1",
"matplotlib>=3.9.4",
"networkx>=3.2.1",
"numpy>=2.0.2",
"pillow>=11.1.0",
"pymupdf>=1.25.1",
"strenum>=0.4.15",
"typing-extensions>=4.12.2",
]
[project.scripts]
simetri = "simetri:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GPLv2 License",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Topic :: Computational Geometry :: 2D Symmetry :: Pattern Design",
]
[project.urls]
Homepage = "https://github.com/mekanimo/simetri.graphics"
[dependency-groups]
dev = [
"pytest>=8.3.4",
]