-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
47 lines (39 loc) · 1.21 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
41
42
43
44
45
46
47
[tool.poetry]
name = "module-cli"
version = "22.4.2"
description = "Bootstrap extensible single-module python CLIs"
authors = ["Andrew Ross <[email protected]>"]
license = "MIT"
readme = "README.md"
keywords = ["cli", "argparse", "tool"]
homepage = "https://github.com/andrewrosss/module-cli"
repository = "https://github.com/andrewrosss/module-cli"
documentation = "https://github.com/andrewrosss/module-cli"
classifiers = [
"Programming Language :: Python :: 3.0",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Environment :: Console",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: User Interfaces",
"Topic :: Utilities",
"Typing :: Typed",
]
[tool.poetry.dependencies]
python = "^3.7"
[tool.poetry.dev-dependencies]
black = "^22.3.0"
flake8 = "^4.0.1"
pylint = "^2.13.4"
reorder-python-imports = "^3.0.1"
bump2version = "^1.0.1"
pre-commit = "^2.17.0"
pytest = "^7.1.1"
pytest-cov = "^3.0.0"
[tool.poetry.scripts]
module-cli = "module_cli:cli"
mcli = "module_cli:cli"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"