-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (37 loc) · 1020 Bytes
/
pyproject.toml
File metadata and controls
46 lines (37 loc) · 1020 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
40
41
42
43
44
45
46
# Poetry settings
[project]
name = "ronbun"
description = "The Sample Programs README Automation Tool"
version = "0.11.0"
license = "MIT"
authors = [
{name = "Jeremy Grifski", email = "jeremy.grifski@therenegadecoder.com>"}
]
classifiers=[
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License"
]
dynamic = ["classifiers"]
readme = "README.md"
requires-python = ">=3.10,<4"
dependencies = [
"snakemd (>=2.4.0,<3)",
"subete (>=0.22.1,<0.23.0)",
"glotter2-core (>=0.1.2,<0.2.0)",
]
[project.urls]
homepage = "https://therenegadecoder.com"
repository = "https://github.com/TheRenegadeCoder/sample-programs-readmes"
[dependency-groups]
test = [
"coverage (>=7.11.0,<8.0.0)",
"pytest (>=8.4.2,<9.0.0)",
"pytest-cov (>=7.0.0,<8.0.0)"
]
[tool.poetry.scripts]
ronbun = "ronbun.readme:main"
# Build system settings
[build-system]
requires = ["poetry-core>=2.3.1,<3"]
build-backend = "poetry.core.masonry.api"