-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (28 loc) · 893 Bytes
/
pyproject.toml
File metadata and controls
31 lines (28 loc) · 893 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
[project]
name = "doxa-cli"
version = "0.1.8"
authors = [{ name = "Jeremy Lo Ying Ping", email = "jeremy@doxaai.com" }]
description = "The CLI for interacting with DOXA, a powerful platform for running engaging online artificial intelligence competitions."
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"typer[all] >= 0.9.0",
"halo ~= 0.0.31, >= 0.0.31",
"requests ~= 2.26.0",
"requests_toolbelt ~= 0.10.1",
"pyyaml >= 6.0",
]
[project.scripts]
doxa = "doxa_cli:main"
[project.urls]
"Homepage" = "https://github.com/DoxaAI/cli"
"Bug Tracker" = "https://github.com/DoxaAI/cli/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"