forked from ialhashim/PyEXR
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
49 lines (43 loc) · 1.3 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
[tool.poetry]
name = "tinyexr"
version = "0.9.1"
description = "Python binding for tinyexr"
license = "MIT"
authors = ["Syoyo Fujita <[email protected]>"]
readme = 'README.md'
repository = "https://github.com/syoyo/pytinyexr"
homepage = "https://github.com/syoyo/pytinyexr"
keywords = ['OpenEXR', 'EXR', 'HDR']
exclude = ["tinyexr/*", "dist/*", "build/*", "data/*"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Manufacturing",
"Topic :: Artistic Software",
"Topic :: Multimedia :: Graphics :: 3D Modeling",
"Topic :: Scientific/Engineering :: Visualization",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
]
[tool.poetry.build]
script = "build.py"
generate-setup-file = true
[tool.poetry.dependencies]
python = ">=3.8.1,<3.11"
setuptools = "^57.4.0"
pybind11 = "^2.10.1"
[tool.poetry.group.dev.dependencies]
yapf = "^0.32.0"
flake8 = "^6.0.0"
mypy = "^0.991"
isort = "^5.10.1"
pytest = "^7.2.0"
numpy = "^1.23.5"
matplotlib = "^3.6.2"
[build-system]
requires = ["setuptools>=42", "poetry-core>=1.0.0", "pybind11~=2.6.1"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
testpaths = "tests/*"