-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
35 lines (31 loc) · 1.01 KB
/
pyproject.toml
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 = "cliparse"
version = "1.1.0"
description = "CLI Framework with Argparse"
license = "MIT"
authors = ["Duk Kyu Lim <[email protected]>"]
readme = ["README.md"]
repository = "https://github.com/ravenkyu/cliparse"
keywords = ["cli", "terminal", "interpreter"]
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Utilities",
"License :: OSI Approved :: MIT License",
]
exclude = ["sample_cli", 'tests']
[tool.poetry.dependencies]
python = "^3.8"
tabulate = "^0.9.0"
pyreadline3 = {version = "^3.4.1", platform = "windows"}
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"