-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
53 lines (45 loc) · 1.09 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
[tool.poetry]
name = "jqp"
version = "0.1.0"
description = "JSON processor with Python one-liner"
license = "MIT"
authors = ["Yuya Unno <unnonouno@gmail.com>"]
readme = "README.rst"
repository = "https://github.com/unnonouno/jqp"
classifiers = [
"Operating System :: OS Independent",
"Environment :: Console",
"Programming Language :: Python",
"License :: OSI Approved :: MIT License",
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Information Technology",
"Topic :: Utilities"
]
[tool.poetry.dependencies]
python = "^3.8"
black = "22.3.0"
flake8 = "4.0.1"
isort = "5.10.1"
mypy = "0.910"
[tool.poetry.group.dev.dependencies]
pytest = "^7.3.1"
pytest-cov = "^4.1.0"
coveralls = "^3.3.1"
pysen = "0.10.4"
[tool.poetry.scripts]
jqp = "jqp:main"
[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 = ["."]