-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
40 lines (36 loc) · 1.2 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
36
37
38
39
40
[tool.poetry]
name = "argparge"
version = "0.1.5"
description = "A very simple tool to create beautiful console application by using native argparse."
authors = ["Özcan Yarımdünya <[email protected]>"]
license = "MIT"
repository = "https://github.com/ozcanyarimdunya/argparge"
homepage = "https://ozcanyarimdunya.github.io/argparge/"
documentation = "https://ozcanyarimdunya.github.io/argparge/"
readme = "README.md"
keywords = ["argparse", "argparge"]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries",
]
include = ["LICENCE"]
packages = [
{ include = "argparge" },
]
[tool.poetry.dependencies]
python = "^3.9"
[tool.poetry.dev-dependencies]
mkdocs = "^1.5.2"
[tool.poetry.group.dev.dependencies]
mkdocs = "1.5.3"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"