-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.cfg
49 lines (45 loc) · 1.23 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
[metadata]
name = pangocairocffi
version = file: pangocairocffi/VERSION
url = https://github.com/leifgehrmann/pangocairocffi
license = LGPL-2.1
license_file = LICENSE
description = CFFI-based pango-cairo bindings for Python
long_description = file: README.rst
long_description_content_type = text/x-rst
author = Leif Gehrmann
keywords =
pango
cairo
cffi
binding
classifiers =
Development Status :: 1 - Planning
Intended Audience :: Developers
Natural Language :: English
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Topic :: Multimedia :: Graphics
Topic :: Text Processing :: Fonts
project_urls =
Code = https://github.com/leifgehrmann/pangocairocffi
Issue tracker = https://github.com/leifgehrmann/pangocairocffi/issues
[options]
packages = find:
setup_requires =
setuptools
install_requires =
cffi >= 1.1.0
cairocffi >= 1.0.2
pangocffi >= 0.11.0
python_requires = >= 3.8
[options.package_data]
pangocairocffi = VERSION, *.txt
[options.packages.find]
exclude = pangocairocffi._generated, tests
[aliases]
test=pytest