-
Notifications
You must be signed in to change notification settings - Fork 14
/
pyproject.toml
46 lines (40 loc) · 1.07 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "TUIFIManager"
version = "5.0.0"
description = "A cross-platform terminal-based termux-oriented file manager."
requires-python = ">=3.8"
readme = "README.md"
dependencies = [
"uni-curses >= 3.1.2",
"Send2Trash >= 1.8.0",
]
license = {text = "General Public License v3.0"}
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10"
]
keywords = [
"file-manager",
"terminal",
"tui",
"ncurses",
"pdcurses",
"uni-curses",
"termux",
"vim",
"vim-motions",
"cross-platform"
]
[project.scripts]
tuifi = "TUIFIManager.__main__:main"