-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (32 loc) · 815 Bytes
/
pyproject.toml
File metadata and controls
39 lines (32 loc) · 815 Bytes
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
[tool.poetry]
name = "poetry-test"
version = "0.1.0"
description = "Learning poetry features"
authors = ["Bijeesh Chathoth <bchathoth@arqmind.com>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
requests = "^2.31.0"
pytest = "^7.4.2"
pre-commit = "^3.4.0"
isort = "^5.12.0"
coverage = "^7.3.1"
sphinx = "^7.2.6"
[tool.poetry.group.dev.dependencies]
black = "^23.7.0"
pylint = "^3.0.0a7"
mypy = "^1.4.1"
# NOTE: Ensure that all "line length" settings have the same value
# - black
# - pylint
# - isort
# - flake8 (this is in its own config file: .flake8 in the project root)
sphinx-rtd-theme = "^1.3.0"
sphinx-simplepdf = "^1.6.0"
pydantic = "^2.3.0"
[tool.black]
line-length = 120
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"