-
Notifications
You must be signed in to change notification settings - Fork 43
/
pyproject.toml
43 lines (39 loc) · 1.14 KB
/
pyproject.toml
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
[tool.poetry]
name = "potrace"
version = "0.3"
description = "potrace Python bindings"
readme = "README.rst"
authors = ["Luper Rouch <[email protected]>"]
license = "GPL"
keywords = ["potrace", "bitmap", "vector", "graphics"]
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"
]
include = [
{path = "potrace/*.pxd"},
{path = "potrace/*.pyx"},
{path = "potrace/agg/*.pxd"},
{path = "potrace/agg/*.pyx"}
]
[tool.poetry.build]
script = "build.py"
generate-setup-file = true
[tool.poetry.dependencies]
python = "*"
numpy = "*"
[tool.poetry.dev-dependencies]
Cython = "*"
Pillow = "*"
nose = "*"
[build-system]
requires = ["poetry-core>=1.0.0", "wheel", "setuptools", "Cython", "numpy"]
build-backend = "poetry.core.masonry.api"