-
Notifications
You must be signed in to change notification settings - Fork 37
/
pyproject.toml
46 lines (42 loc) · 1.2 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
[tool.poetry]
name = "inbac"
version = "2.1.0"
description = "Interactive batch cropper made for quick cropping of images."
authors = ["Robert Węcławski <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/weclaw1/inbac"
repository = "https://github.com/weclaw1/inbac"
keywords = ["inbac", "batch", "image", "crop"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.6",
"License :: OSI Approved :: MIT License",
"Topic :: Multimedia :: Graphics :: Editors",
"Topic :: Utilities",
]
include = [
"LICENSE",
]
packages = [{include = "inbac"}]
[tool.poetry.dependencies]
python = ">= 3.8, < 3.13"
pillow = "^10.3"
[tool.poetry.dev-dependencies]
pytest = "^8.2"
pylint = "^3.2"
autopep8 = "^2.1"
pyinstaller = "^6.6"
macholib = "^1.16"
pywin32-ctypes = "^0.2"
pefile = "^2023.2.7"
[tool.poetry.scripts]
inbac = "inbac.inbac:main"
test = "tests.test_inbac:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"