forked from FHPythonUtils/GimpFormats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
73 lines (63 loc) · 1.81 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
64
65
66
67
68
69
70
71
72
73
[tool.poetry]
name = "gimpformats"
version = "2022.0.1"
license = "lgpl-3.0-only"
description = "Pure python implementation of the gimp file format(s)"
authors = ["FredHappyface"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Multimedia :: Graphics",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities"
]
homepage = "https://github.com/FHPythonUtils/GimpFormats"
repository = "https://github.com/FHPythonUtils/GimpFormats"
documentation = "https://github.com/FHPythonUtils/GimpFormats/blob/master/README.md"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
binaryiotools = "<2023,>=2021.0.3"
blendmodes = "<2024,>=2022"
brackettree = "<2,>=0.2.5"
numpy = "<2,>=1.22.1"
Pillow = "<10,>=9.0.0"
[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
imgcompare = "^2.0.1"
[tool.black]
line-length = 100
target-version = ["py37"]
[tool.isort]
profile = "black"
indent = "Tab"
[tool.pydocstyle]
convention = "google"
ignore = "D205,D415"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pylint.basic]
argument-naming-style = "camelCase"
attr-naming-style = "camelCase"
function-naming-style = "camelCase"
method-naming-style = "camelCase"
variable-naming-style = "camelCase"
module-rgx = "(([A-Z][a-z0-9]+)+)|(([a-z0-9]*_?[a-z0-9]*)*)"
good-names = "i,j,k,ex,Run,_,x,y,id"
[tool.pylint.format]
indent-string = "\t"
[tool.pylint.master]
ignore-patterns = "test_.*?py"
[tool.pylint.messages_control]
enable = ["F", "E", "W", "R", "C"]
disable = [
"pointless-string-statement",
"superfluous-parens",
"bad-continuation",
"fixme"
]