This repository was archived by the owner on Nov 19, 2025. It is now read-only.
forked from shahriyardx/easy-pil
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (51 loc) · 1.6 KB
/
pyproject.toml
File metadata and controls
58 lines (51 loc) · 1.6 KB
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
[tool.poetry]
name = "easy-pil"
version = "0.3.3"
description = "A Python library built on top of PIL to easily edit/modify images"
keywords = ["easy-pil", "easy pillow", "Pillow", "image editing"]
authors = ["Md Shahriyar Alam <mdshahriyaralam552@gmail.com>"]
readme = "README.md"
homepage = "https://github.com/shahriyardx/easy-pil"
repository = "https://github.com/shahriyardx/easy-pil"
documentation = "https://easy-pil.readthedocs.io/en/latest/"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
[tool.black]
line-length = 79
skip-string-normalization = true
[tool.isort]
profile = "black"
combine_as_imports = true
combine_star = true
line_length = 79
[tool.poetry.dependencies]
python = ">=3.8.1,<3.12"
pillow = "^10.1.0"
aiohttp = "^3.8.0"
requests = "^2.30.0"
aiocache = "^0.12.2"
typing-extensions = "^4.8.0"
[tool.poetry.group.dev.dependencies]
black = "^23.3.0"
isort = "^5.12.0"
pyright = "^1.1.308"
flake8 = "^6.0.0"
pytest = "^7.3.1"
[tool.poetry.group.docs.dependencies]
sphinx = "6.2.1"
furo = "^2023.3.27"
[build-system]
requires = ["poetry-core", "setuptools", "wheel"]
build-backend = "poetry.core.masonry.api"
[tool.commands]
fmt = "python3 -m black . ;python3 -m isort ."
build = "python3 -m setup.py sdist bdist_wheel"
publish = "twine upload dist/* --skip-existing"