-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (27 loc) · 747 Bytes
/
pyproject.toml
File metadata and controls
32 lines (27 loc) · 747 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
[project]
name = "newproject"
version = "0.1.0"
description = "Quick starting point for a respectable Python project"
license = "MIT"
readme = "README.md"
requires-python = ">=3.10"
authors = [
{ name = "Yaniv Mordekhay", email = "yanivmo@users.noreply.github.com" }
]
dynamic = ["dependencies"]
[project.urls]
homepage = "https://github.com/yanivmo/python-project-template"
repository = "https://github.com/yanivmo/python-project-template"
[project.scripts]
newproject = "newproject"
[tool.poetry.dependencies]
python = ">=3.10,<4.0"
dynaconf = "^3.1.12"
loguru = "^0.7.3"
[tool.poetry.group.dev.dependencies]
black = "*"
flake8 = "*"
pytest = "^8.3.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"