-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
35 lines (29 loc) · 929 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
[tool.poetry]
name = "wipe-clean"
version = "0.3.1"
description = "Clear your terminal in a fun way. Zero dependency."
authors = ["wenoptk <[email protected]>"]
readme = "README.md"
repository = "https://github.com/wenoptics/python-wipe-clean"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Typing :: Typed",
]
[tool.poetry.dependencies]
python = ">=3.7,<4.0.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.3"
flake8 = "^4.0.1"
marko = { extras = ["toc"], version = "^1.2.0" }
Jinja2 = "^3.1.3"
[build-system]
requires = ["poetry-core>=1.3.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
wipe-clean = "wipe_clean.main:_outer_cli"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/wenoptics/python-wipe-clean/issues"