-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (36 loc) · 941 Bytes
/
pyproject.toml
File metadata and controls
40 lines (36 loc) · 941 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
[build-system]
requires = [
"setuptools>=61.0",
"certifi>=14.05.14",
"typer>=0.16",
"inquirer>=3.4.0",
"recodex-pylib>=0.2.2"
]
build-backend = "setuptools.build_meta"
[project]
name = "recodex-cli"
version = "0.2.2"
authors = [
{ name="Vojtech Kloda", email="vojtech.kloda@gmail.com" },
{ name="Martin Kruliš", email="krulis@d3s.mff.cuni.cz"},
]
description = "CLI client for ReCodEx API implemented in Python based on recodex-pylib."
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
]
dependencies = [
"setuptools>=61.0",
"certifi>=14.05.14",
"typer>=0.16",
"inquirer>=3.4.0",
"recodex-pylib>=0.2.2"
]
[project.scripts]
recodex = "recodex_cli.console:app"
[project.urls]
Homepage = "https://github.com/ReCodEx/cli"
Issues = "https://github.com/ReCodEx/cli/issues"