forked from psd-tools/psd-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
63 lines (55 loc) · 1.76 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[build-system]
requires = ["setuptools", "wheel", "cython"]
build-backend = "setuptools.build_meta"
[project]
name = "psd-tools"
dynamic = ["version"]
authors = [
{ name = "Mikhail Korobov", email = "[email protected]" },
{ name = "Kota Yamaguchi", email = "[email protected]" },
]
description = "Python package for working with Adobe Photoshop PSD files"
readme = "README.rst"
keywords = ["photoshop", "psd"]
license = { text = "MIT License" }
dependencies = [
"docopt>=0.6.0",
"attrs>=23.0.0",
"Pillow>=10.0.0",
"aggdraw",
"numpy",
"scipy",
"scikit-image",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"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 :: Multimedia :: Graphics :: Viewers",
"Topic :: Multimedia :: Graphics :: Graphics Conversion",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.optional-dependencies]
dev = ["pytest", "pytest-cov", "ipython", "ruff", "types-docopt"]
docs = ["sphinx", "sphinx_rtd_theme"]
[project.scripts]
psd-tools = "psd_tools.__main__:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
psd_tools = ["*.pyx"]
[tool.setuptools.dynamic]
version = { attr = "psd_tools.version.__version__" }
[tool.cibuildwheel]
test-requires = ["pytest", "pytest-cov", "ipython"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "--cov=psd_tools"