-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
42 lines (36 loc) · 1018 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
42
[project]
name = "treecat"
description="Displays a tree view of files and their contents"
readme = "README.md"
authors = [
{name="Tom Flanagan", email="tom@zkpq.ca"}
]
classifiers = [
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Desktop Environment :: File Managers",
"Topic :: System :: Filesystems",
"Topic :: Utilities",
]
dynamic = ["version"]
dependencies = [
"colorama"
]
[project.urls]
Homepage = "https://github.com/Knio/treecat"
Source = "https://github.com/Knio/treecat"
[project.scripts]
tcat = "treecat:main"
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["treecat"]
[tool.setuptools.dynamic]
version = {attr = "treecat._version.version"}