-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (31 loc) · 1.04 KB
/
pyproject.toml
File metadata and controls
35 lines (31 loc) · 1.04 KB
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
[tool.poetry]
name = "tdmctl"
version = "0.0.0"
description = "command line tool client for TouDoum-Framework"
authors = ["msterhuj <gabin.lanore@gmail.com>"]
homepage = "https://toudoum-framework.github.io/"
documentation = "https://toudoum-framework.github.io/tdmctl/"
repository = "https://github.com/TouDoum-Framework/tdmctl"
readme = "README.md"
keywords = ["toudoum", "framework", "cli", "client", "tool", "tdmctl", "management"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Utilities",
] # https://pypi.org/classifiers/
[tool.poetry.scripts]
tdmctl = "tdmctl.main:app"
[tool.poetry.dependencies]
python = "^3.8"
colorama = "^0.4.5"
typer = {extras = ["all"], version = "^0.6.1"}
PyYAML = "^6.0"
requests = "^2.28.1"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"