-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
35 lines (31 loc) · 859 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[project]
name = "tpux"
authors = [
{ name="Shin", email="[email protected]" },
]
# we cannot use `dynamic` here, because it doesn't work on Python 3.8
version = "0.1.6"
dependencies = [
"psutil",
"fabric",
]
description = "A set of Python scripts that makes your experience on TPU better"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
'License :: OSI Approved :: MIT License',
'Topic :: System :: Distributed Computing',
"Operating System :: POSIX :: Linux",
]
[project.urls]
Homepage = "https://github.com/yixiaoer/tpux"
Issues = "https://github.com/yixiaoer/tpux/issues"
[project.scripts]
tpux = "tpux.cli:main"
podrun = "tpux.podrun:main"