-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpyproject.toml
62 lines (53 loc) · 1.9 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[project]
name = "polysh"
authors = [{ email = "it@innogames.com" }]
version = "0.14.0"
description = "Control thousands of SSH sessions from a single prompt"
readme = "README.rst"
requires-python = ">=3.5,<=3.12"
dependencies = []
classifiers = [ # Optional
"Intended Audience :: System Administrators",
"Intended Audience :: Developers",
"Topic :: System :: Systems Administration",
"Topic :: System :: Shells",
"Topic :: System :: Clustering",
"Topic :: System :: Distributed Computing",
"Environment :: Console",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
"Development Status :: 5 - Production/Stable",
# This does not influence pip when choosing what to install. It is used
# for the package list on the pypi website.
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"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",
]
[project.urls]
Homepage = "https://github.com/innogames/polysh"
Documentation = "https://github.com/innogames/polysh"
Repository = "https://github.com/innogames/polysh"
Issues = "https://github.com/innogames/polysh/issues"
Changelog = "https://github.com/innogames/polysh/blob/master/CHANGELOG.rst"
[project.license]
file = "LICENSE"
[project.scripts]
polysh = "polysh.main:main"
[project.optional-dependencies]
logging = [
"raven>=6.10.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
dev-dependencies = [
"pexpect>=4.9.0",
"coverage>=5.5",
]