-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (38 loc) · 1.16 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "xxh-xxh"
authors = [
{ name="xxh", email="[email protected]" },
]
description = "Bring your favorite shell wherever you go through the ssh"
readme = "README.md"
dynamic = ["version"]
requires-python = ">=3.6"
license = {text = "BSD"}
dependencies = [
'pexpect >= 4.8.0',
'pyyaml',
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Unix Shell",
"Topic :: System :: Shells",
"Topic :: System :: System Shells",
"Topic :: Terminals",
"Topic :: System :: Networking",
"License :: OSI Approved :: BSD License",
]
[project.urls]
"Documentation" = "https://github.com/xxh/xxh/blob/master/README.md"
"Code" = "https://github.com/xxh/xxh"
"Issue tracker" = "https://github.com/xxh/xxh/issues"
[tool.setuptools]
packages = ['xxh_xxh']
package-dir = {'xxh_xxh' = 'xxh/xxh_xxh'}
script-files = ["xxh/xxh", "xxh/xxh_xxh/xxh.zsh", "xxh/xxh_xxh/xxh.xsh", "xxh/xxh_xxh/xxh.bash"]
[tool.setuptools.package-data]
xxh_xxh = ["*.py", "*.xxhc", "xxh.*"]
[tool.setuptools.dynamic]
version = {attr = "xxh.xxh_xxh.__version__"}