-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
80 lines (63 loc) · 1.68 KB
/
pyproject.toml
File metadata and controls
80 lines (63 loc) · 1.68 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[project]
name = "PyDrawille"
dynamic = ["version"]
requires-python = ">= 3.8"
dependencies = [
"numpy",
"pillow >= 10.0.0",
]
authors = [
{ name = "金羿Eilles", email = "EillesWan@outlook.com" },
]
description = "Using Unicode braille characters to draw pixels in console."
readme = { file = "README.en.md", content-type = "text/markdown" }
license = "Apache-2.0"
keywords = [
"console",
"drawille",
"unicode",
"braille",
"pixel",
"ascii",
"image",
]
classifiers = [
"Environment :: Console",
"Intended Audience :: Developers",
# "License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
[project.optional-dependencies]
dev = [
"twine",
"rich",
]
[project.urls]
"Homepage" = "https://github.com/EillesWan/PyDrawille"
Issues = "https://github.com/EillesWan/PyDrawille/issues"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
# https://backend.pdm-project.org/build_config/#build-configurations
[tool.pdm.build]
source-includes = [
"README.en.md",
"README.md",
"LICENSE",
]
excludes = [
"refant/",
"./*.otf",
"./*.ttf",
"./*.png",
"./test.py",
"./test_draw.py",
]
[tool.pdm.version]
source = "file"
path = "PyDrawille/__init__.py"
[tool.pyright]
typeCheckingMode = "standard"