-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
34 lines (30 loc) · 945 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "terminal-agent-x"
version = "0.1.11"
authors = [
{ name="LyuLumos", email="lyujiuyang0@gmail.com" },
]
description = "A terminal agent for terminal users."
readme = "README.md"
requires-python = ">=3.6"
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"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",
]
dependencies = [
'psutil'
]
[project.scripts]
tax = "terminal_agent_x.tax:main"
[project.urls]
"Homepage" = "https://github.com/LyuLumos/Terminal-Agent-X"
"Bug Tracker" = "https://github.com/LyuLumos/Terminal-Agent-X/issues"