-
Notifications
You must be signed in to change notification settings - Fork 51
/
setup.cfg
66 lines (58 loc) · 1.77 KB
/
setup.cfg
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
[metadata]
name = glyphsLib
description = A bridge from Glyphs source files (.glyphs) to UFOs
long_description = file: README.rst
url = https://github.com/googlefonts/glyphsLib
author = James Godfrey-Kittle
author_email = [email protected]
license = Apache Software License 2.0
license_file = LICENSE
classifiers =
Development Status :: 4 - Beta
Environment :: Console
Environment :: Other Environment
Intended Audience :: Developers
Intended Audience :: End Users/Desktop
License :: OSI Approved :: Apache Software License
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Topic :: Multimedia :: Graphics
Topic :: Multimedia :: Graphics :: Graphics Conversion
Topic :: Multimedia :: Graphics :: Editors :: Vector-Based
[options]
package_dir = =Lib
packages = find:
include_package_data = True
python_requires = >=3.8
setup_requires =
setuptools_scm
install_requires =
ufoLib2 >= 0.6.2
fonttools[ufo,unicode] >= 4.38.0
openstep-plist >= 0.3.0
importlib_resources >= 1.3; python_version<"3.9"
[options.extras_require]
ufo_normalization = ufonormalizer
defcon = defcon >= 0.6.0
colr = skia-pathops
[options.package_data]
glyphsLib.data = *.xml, GlyphData_LICENSE
[options.packages.find]
where = Lib
[options.entry_points]
console_scripts =
glyphs2ufo = glyphsLib.cli:_glyphs2ufo_entry_point
ufo2glyphs = glyphsLib.cli:_ufo2glyphs_entry_point
[bdist_wheel]
universal = 0
[sdist]
formats = zip
[flake8]
select = B, C, E, F, W, T4, B9
ignore = E203, E266, E501, W503, E741, B905, E721, B907, B034, B017
max-line-length = 80
max-complexity = 19
exclude = .git, __pycache__, build, dist, .eggs, .tox