-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (36 loc) · 1 KB
/
pyproject.toml
File metadata and controls
41 lines (36 loc) · 1 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
[project]
name = "fontdiff"
requires-python = ">=3.11"
dependencies = [
"pillow>=10.1.0",
"skia-pathops>=0.8.0.post1",
"ziafont>=0.11"
]
dynamic = ["version", "description"]
readme = "README.md"
license = "MIT"
license-files = ["LICENSE.txt"]
authors = [
{ name="derVedro", email="dervedro@googlemail.com" },
]
classifiers = [
"Development Status :: 5 - Production/Stable", # Mature repo
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Other Audience",
"Topic :: Utilities",
"Topic :: Multimedia :: Graphics",
"Programming Language :: Python :: 3 :: Only",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/derVedro/fontdiff"
Issues = "https://github.com/derVedro/fontdiff/issues"
[project.scripts]
fontdiff = "fontdiff.fontdiff:main"
[build-system]
requires = ["flit_core<4"]
build-backend = "flit_core.buildapi"
[tool.flit.module]
name = "fontdiff"