forked from Ben-Epstein/poetry-setup-python-bug
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (28 loc) · 697 Bytes
/
pyproject.toml
File metadata and controls
35 lines (28 loc) · 697 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
[tool.poetry]
name = "<name>"
version = "0.1.1"
description = "<description>"
authors = ["firstName lastName <[email protected]>"]
readme = "README.md"
packages = [{include = "src/module"}]
[tool.poetry.dependencies]
python = ">=3.9"
numpy = "^1.22.3"
tqdm = {version = "4.66.4", optional = true }
pandas = "^2.2.2"
[tool.poetry.group.dev]
optional=true
[tool.poetry.group.dev.dependencies]
pylint = "2.15.9"
black = "22.12.0"
isort = "^5.11.4"
pyright = "^1.1.362"
[tool.poetry.group.test]
optional=true
[tool.poetry.group.test.dependencies]
pytest = "^7.2.0"
pytest-asyncio = "^0.20.3"
pytest-cov = "^4.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"