This repository has been archived by the owner on Jul 2, 2024. It is now read-only.
forked from edu-python-course/replit-assignment-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
70 lines (60 loc) · 1.8 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[tool.poetry]
name = "workout-template"
version = "2024.3"
description = "todo: provide workout description"
license = "MIT"
authors = [
"Serhii Horodilov <[email protected]>"
]
# Maintainers list should be distinct from authors.
# maintainers = ["Serhii Horodilov <[email protected]>"]
readme = "README.md"
repository = "https://github.com/edu-python-course/workout-template"
keywords = [
"python",
"edu",
"education",
"workout",
]
classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Topic :: Documentation :: Sphinx",
"Topic :: Education",
]
# The ``to`` parameter is designed to specify the relative destination
# path where the package will be located upon installation.
# This allows for greater control over the organization of packages
# within your project’s structure.
#
# { include = "my_package", from = "lib", to = "target_package" }
# e.g. { include = "workout", from = "src", to = "basics" }
packages = [
{ include = "workout", from = "src" },
]
[tool.poetry.dependencies]
python = ">=3.10.0,<3.11"
# `git-python` package is required by ReplIt IDE
git-python = "^1.0.3"
# install: ``poetry install --with docs``
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
sphinx = "^7.2.6"
tomli = "*"
myst-parser = "^2.0.0"
sphinx-material = "^0.0.36"
sphinx-intl = "^2.1.0"
# install: ``poetry install --with test``
[tool.poetry.group.test]
optional = true
[tool.poetry.group.test.dependencies]
pytest = "^8.1.1"
coverage = "^7.4.4"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/edu-python-course/workout-template/issues/"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"