File: pyproject.toml

package info (click to toggle)
ufonormalizer 0.6.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 252 kB
  • sloc: python: 3,043; makefile: 3
file content (35 lines) | stat: -rw-r--r-- 1,111 bytes parent folder | download
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
[build-system]
requires = ["setuptools>=80", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"

[project]
name = "ufonormalizer"
dynamic = ["version"]
description = "Script to normalize the XML and other data inside of a UFO."
readme = "README.md"
license-files = ["LICENSE.txt"]
requires-python = ">=3.6"
authors = [{ name = "Tal Leming", email = "tal@typesupply.com" }]
classifiers = [
    "Development Status :: 5 - Production/Stable",
    "Environment :: Console",
    "Environment :: Other Environment",
    "Intended Audience :: Developers",
    "Intended Audience :: End Users/Desktop",
    "Natural Language :: English",
    "Operating System :: OS Independent",
    "Programming Language :: Python",
    "Programming Language :: Python :: 3",
    "Topic :: Multimedia :: Graphics",
    "Topic :: Multimedia :: Graphics :: Graphics Conversion",
    "Topic :: Text Processing :: Fonts",
]

[project.urls]
Homepage = "https://github.com/unified-font-object/ufoNormalizer"

[project.scripts]
ufonormalizer = "ufonormalizer:main"

[tool.setuptools_scm]
write_to = 'src/ufonormalizer/_version.py'