forked from trufont/trufont
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
67 lines (60 loc) · 1.71 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
67
[metadata]
name = trufont
description = TruFont, a modular and cross-platform font editor.
long_description = file: README.rst
url = http://trufont.github.io
author = Adrien Tétar
author_email = [email protected]
license = GNU LGPL v3/GNU GPL v3
platforms = Linux, Win32, Mac OS X
classifiers =
Development Status :: 4 - Beta
Environment :: X11 Applications :: Qt
Intended Audience :: Developers
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
Operating System :: MacOS :: MacOS X
Operating System :: Microsoft :: Windows
Operating System :: POSIX :: Linux
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Topic :: Multimedia :: Graphics :: Editors :: Vector-Based
Topic :: Text Processing :: Fonts
[options]
package_dir = =Lib
packages = find:
python_requires = >=3.6
setup_requires =
setuptools_scm
wheel
install_requires =
booleanOperations >= 0.7.0
defcon >= 0.6.0
fonttools[unicode,ufo,lxml,type1,woff] >= 4.0.0
hsluv >= 0.0.2
pyqt5 >= 5.5.0
ufo-extractor >= 0.3.0
ufo2ft >= 0.5.3
pyobjc-framework-cocoa >= 6.2 ; sys_platform == 'darwin'
[options.packages.find]
where = Lib
[options.entry_points]
gui_scripts =
trufont = trufont.__main__:main
[bdist_wheel]
universal = 0
[sdist]
formats = zip
[flake8]
ignore = E203, W503, E501, B009, B010, B305, B006, B008
max-line-length = 88
# max-complexity should be 10
max-complexity = 45
exclude = .git,icons_db.py
[tool:isort]
multi_line_output = 3
include_trailing_comma = True
force_grid_wrap = 0
use_parentheses = True
line_length = 88