-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (26 loc) · 884 Bytes
/
pyproject.toml
File metadata and controls
30 lines (26 loc) · 884 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
[tool.poetry]
name = "PyStratum-Cli"
version = "2.1.0"
description = "PyStratum CLI: The frontend of PyStratum"
authors = ["Set Based IT Consultancy <info@setbased.nl>"]
keywords = ["PyStratum", "CLI"]
classifiers = ["Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Code Generators",
"Topic :: System :: Installation/Setup",
]
[tool.poetry.dependencies]
cleo = "^2.1.0"
pystratum-backend = "^2.1.0"
python = "^3.12.0"
[tool.poetry.group.dev.dependencies]
coverage = "^7.5.1"
[tool.poetry.scripts]
pystratum = "pystratum_cli:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"