forked from flupke/pypotrace
-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.cfg
50 lines (44 loc) · 1.29 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
[metadata]
name = pypotrace
version = 0.2
description = potrace Python bindings
long_description = file: README.rst
keywords = potrace bitmap vector graphics
author = Luper Rouch
author_email = [email protected]
url = http://github.com/flupke/pypotrace
classifiers =
Development Status :: 4 - Beta
Environment :: Console
Intended Audience :: Developers
License :: OSI Approved :: GNU General Public License (GPL)
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Cython
Programming Language :: Python
Topic :: Software Development :: Libraries :: Python Modules
Topic :: Multimedia :: Graphics :: Graphics Conversion
[options]
packages = find:
setup_requires = cython
install_requires = numpy
[options.extras_require]
dev =
nose
pillow
cython<0.29
[options.packages.find]
exclude = *.tests *.tests.* tests.* tests
[cython-module: potrace._potrace]
sources = potrace/_potrace.pyx
include_dirs = eval(__import__('numpy').get_include())
libraries = potrace
[cython-module: potrace.bezier]
sources = potrace/bezier.pyx
language = c++
include_dirs = eval(__import__('numpy').get_include())
pkg_config_packages = libagg
[cython-module: potrace.agg.curves]
sources = potrace/agg/curves.pyx
language = c++
pkg_config_packages = libagg