-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
41 lines (36 loc) · 927 Bytes
/
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
41
[tool.poetry]
name = "easyparse"
version = "1.0.9"
description = "A user-friendly, lightweight command-line argument parser."
authors = ["YN <28938427+Sh3llcod3@users.noreply.github.com>"]
license = "MIT"
readme = 'README.md'
repository = "https://github.com/Sh3llcod3/Easyparse"
homepage = "https://github.com/Sh3llcod3/Easyparse"
classifiers = [
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: MIT License",
"Environment :: Console",
"Operating System :: POSIX :: Linux"
]
include = [
"easyparse/terminal_colors.py"
]
[tool.poetry.dependencies]
python = "^3.7"
flake8 = "*"
[tool.poetry.dev-dependencies]
flake8 = "*"
flake8-bugbear = "*"
flake8-import-order = "*"
flake8-string-format = "*"
flake8-tidy-imports = "*"
flake8-todo = "*"
setuptools = "*"
twine = "*"
pyinstaller = "*"
requests = "*"
mypy = "*"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"