-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
61 lines (53 loc) · 1.49 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
[tool.poetry]
name = "photoshop-connection"
version = "0.2.0"
description = "Python package for Photoshop Connection"
authors = ["Kota Yamaguchi <KotaYamaguchi1984@gmail.com>"]
license = "MIT"
readme = "README.rst"
repository = "https://github.com/kyamagu/photoshop-connection"
documentation = "https://photoshop-connection.readthedocs.io"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries",
"Topic :: Multimedia :: Graphics",
]
packages = [{ include = "photoshop", from = "src" }]
include = ["src/**/*.js.j2"]
[tool.poetry.dependencies]
python = "^3.7"
cryptography = ">=39.0.1,<44.0.0"
jinja2 = "<3.2.0"
[tool.poetry.group.dev.dependencies]
esprima = "^4.0.1"
pillow = "^9.4.0"
pytest = "^7.2.1"
pysen = {extras = ["lint"], version = "^0.10.3"}
flake8 = "<5"
pytest-cov = "^4.0.0"
pytest-timeout = "^2.1.0"
[tool.poetry.group.docs.dependencies]
sphinx = "<2"
sphinx-rtd-theme = "<0.5"
readthedocs-sphinx-ext = "<2.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pysen]
version = "0.10"
[tool.pysen.lint]
enable_black = true
enable_flake8 = true
enable_isort = true
enable_mypy = true
mypy_preset = "strict"
line_length = 88
py_version = "py37"
[[tool.pysen.lint.mypy_targets]]
paths = ["src", "tests"]
[tool.pytest.ini_options]
addopts = "--cov-report term-missing --cov=photoshop"
testpaths = ["tests"]