-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
58 lines (52 loc) · 1.49 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
48
49
50
51
52
53
54
55
56
57
58
[project]
name = "nuke"
version = "2.5.4"
authors = [
{ name="Varun Agrawal", email="varagrawal@gmail.com" },
]
description = "Command line tool for nuking a directory 💥"
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX",
"Operating System :: MacOS",
"Operating System :: Unix",
"Operating System :: Microsoft :: Windows",
"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 :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"click >= 6.7",
"crayons >= 0.1.2",
"rich ~= 12.6.0"
]
[project.urls]
"Homepage" = "https://github.com/varunagrawal/nuke"
"Bug Tracker" = "https://github.com/varunagrawal/nuke/issues"
[project.scripts]
nuke = "nuke.nuke:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.poetry]
name = "nuke"
version = "2.5.4"
description = "Command line tool for nuking a directory 💥"
authors = ["Varun Agrawal <varagrawal@gmail.com>"]
license = "MIT"
[tool.poetry.dependencies]
python = ">=3.7,<4.0.0"
click = ">=6.7"
crayons = ">=0.1.2"
rich = "^12.6.0"
[tool.poetry.dev-dependencies]
tox = "^3.27.0"
pypandoc = ">=1.4"