-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.cfg
More file actions
39 lines (34 loc) · 955 Bytes
/
setup.cfg
File metadata and controls
39 lines (34 loc) · 955 Bytes
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
[metadata]
name = ufonormalizer_pre_commit
version = 1.0.1
description = A pre-commit hook for ufoNormalizer.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/klim-type-foundry/ufoNormalizer-pre-commit
author = Peter Dekkers
author_email = ufo-precommit@goodcode.nz
license = MIT
license_files = LICENSE
classifiers =
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
[options]
packages = find:
install_requires =
ruamel.yaml>=0.15
ufonormalizer>=0.6.3,<1
tomli>=1.1.0;python_version<"3.13"
python_requires = >=3.10
[options.packages.find]
exclude =
tests*
testing*
[options.entry_points]
console_scripts =
ufo-normalizer = src.main:main
[bdist_wheel]
universal = True
[coverage:run]
plugins = covdefaults