-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
47 lines (41 loc) · 1.23 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
[project]
name = "xontrib-abbrevs"
dynamic = ["version"]
license = {file = "LICENSE"}
description = "Expands input words as you type in xonsh shell."
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: System :: Shells",
"Topic :: System :: System Shells",
"Topic :: Terminals",
]
requires-python = ">=3.10"
dependencies = ["xonsh>=0.17", "prompt-toolkit"]
authors = [
{ name = "xontrib-abbrevs", email = "[email protected]" },
]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.urls]
Homepage = "https://github.com/xonsh/xontrib-abbrevs"
Documentation = "https://github.com/xonsh/xontrib-abbrevs/blob/master/README.md"
Code = "https://github.com/xonsh/xontrib-abbrevs"
"Issue tracker" = "https://github.com/xonsh/xontrib-abbrevs/issues"
[project.optional-dependencies]
dev = ["pytest>=7.0"]
[build-system]
requires = [
"setuptools>=62",
"wheel", # for bdist package distribution
"setuptools_scm>=8",
]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["xontrib"]
package-dir = {xontrib = "xontrib"}
platforms = ["any"]
include-package-data = false
[tool.setuptools_scm]