-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (47 loc) · 1.09 KB
/
Copy pathpyproject.toml
File metadata and controls
55 lines (47 loc) · 1.09 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
[build-system]
requires = ["setuptools>=77"]
build-backend = "setuptools.build_meta"
[project]
name = "handwrite"
version = "0.4.0"
description = "Convert text to custom handwriting"
readme = "README.md"
requires-python = ">=3.14"
license = "MIT"
license-files = ["LICENSE"]
authors = [
{ name = "Yash Lamba", email = "yashlamba2000@gmail.com" },
{ name = "Saksham Arora", email = "sakshamarora1001@gmail.com" },
{ name = "Aryan Gupta", email = "aryangupta973@gmail.com" },
]
classifiers = [
"Programming Language :: Python :: 3.14",
"Operating System :: OS Independent",
]
dependencies = [
"opencv-python",
"Pillow",
]
[project.urls]
Homepage = "https://github.com/yashlamba/handwrite"
[project.scripts]
handwrite = "handwrite.cli:main"
[dependency-groups]
dev = [
"black",
"pre-commit",
]
docs = [
"mkdocs",
"mkdocs-material",
"mkdocstrings[python]",
"pymdown-extensions",
]
[tool.setuptools.package-data]
handwrite = ["default.json"]
[tool.setuptools]
packages = ["handwrite"]
[tool.uv]
default-groups = ["dev"]
[tool.black]
target-version = ["py314"]