-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
50 lines (42 loc) · 1.16 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
[tool.poetry]
name = "anshitsu"
version = "1.5.1" # using poetry-dynamic-versioning
description = "A tiny digital photographic utility."
readme = "README.md"
authors = ["Iosif Takakura <[email protected]>"]
homepage = "https://github.com/huideyeren"
repository = "https://github.com/huideyeren/anshitsu"
documentation = "https://github.com/huideyeren/anshitsu"
license = "MIT"
[tool.poetry-dynamic-versioning]
enable = true
style = "pep440"
[tool.poetry.dependencies]
python = "<3.13,>=3.10"
numpy = "^1.26.0"
Pillow = "^10.1.0"
colorcorrect = "^0.9.1"
fire = "^0.5.0"
[tool.poetry.dev-dependencies]
pytest = "^6.2"
flake8 = "^6.1.0"
mypy = "^0.981"
black = "^23.10"
isort = "^5.12.0"
pyproject-flake8 = "^0.0.1a4"
pytest-randomly = "^3.15.0"
tox = "^4.11.3"
pytest-cov = "^4.1.0"
[tool.poetry.scripts]
anshitsu = "anshitsu.cli:main"
[tool.poetry.group.dev.dependencies]
importlib-metadata = "^6.8.0"
poetry-dynamic-versioning = "^1.1.1"
setuptools = "^68.2.2"
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning>=1.0.0,<2.0.0"]
build-backend = "poetry_dynamic_versioning.backend"
[tool.black]
line-length = 88
[tool.mypy]
ignore_missing_imports=1