-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (25 loc) · 779 Bytes
/
pyproject.toml
File metadata and controls
29 lines (25 loc) · 779 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
[tool.poetry]
name = "example-package-crouchcd"
version = "0.1.1"
description = "A small example package"
authors = ["Example Author <author@example.com>"]
readme = "README.md"
packages = [{include = "example_package_crouchcd", from = "src"}]
homepage = "https://github.com/pypa/sampleproject"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/pypa/sampleproject/issues"
[tool.poetry.dependencies]
python = "^3.7"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.1"
pytest-cov = "^4.0.0"
pytest-benchmark = "^4.0.0"
black = "^23.1.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"