-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (50 loc) · 1.14 KB
/
Copy pathpyproject.toml
File metadata and controls
59 lines (50 loc) · 1.14 KB
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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "jk_simpleexec"
dynamic = [ "version" ]
authors = [
{ name = "Jürgen Knauth", email = "pubsrc@binary-overflow.de" },
]
maintainers = [
{ name = "Jürgen Knauth", email = "pubsrc@binary-overflow.de" },
]
description = "Python module to run command line programs in a convenient way and retrieve their output after they terminated."
readme = "README.md"
requires-python = ">=3.8"
keywords = [
"exec",
"shell",
"execute",
"Popen",
"kill",
"spawn",
]
license = { text = "Apache2" }
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
]
dependencies = [
"invoke",
"jk_prettyprintobj",
"jk_cmdoutputparsinghelper",
]
#[project.urls]
#Homepage = "https://example.com"
#Documentation = "https://readthedocs.org"
#Repository = "https://github.com/me/spam.git"
#Changelog = "https://github.com/me/spam/blob/master/CHANGELOG.md"
[tool.flit.sdist]
exclude = [
"bin/",
"build/",
"dist/",
"sdist/",
"*.egg-info",
"*.OLD",
"setup.cfg",
]
#[project.scripts]