-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
31 lines (28 loc) · 935 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
[project]
name = "trash_collector"
version = "0.0.3"
dynamic = []
authors = [
{ name="Notenlish (Ihsan Carkci)", email="[email protected]" },
]
keywords = ["trash","trash collector","garbage","garbage collector","cleanup","cleaner","disk space"]
dependencies = [
"typer[all]==0.9.0",
"colorama==0.4.6",
"shellingham==1.5.4",
"pytest==8.0.1",
]
description = "Python cli to easily help clean old folders and free up disk space."
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/Notenlish/trash_collector"
Issues = "https://github.com/Notenlish/trash_collector/issues"
[build-system]
requires = ["hatchling", "typer[all]==0.9.0", "colorama==0.4.6", "shellingham==1.5.4", "pytest==8.0.1"]
build-backend = "hatchling.build"