-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (31 loc) · 1 KB
/
pyproject.toml
File metadata and controls
35 lines (31 loc) · 1 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "async-python-runner"
version = "0.0.1"
authors = [{ name = "Diana Moore", email = "contact@xn4p4lm.com" }]
description = "A simple package to allow you to run multiple subprocesses by defining the directory and main method of the target python file."
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MPL-2.0 License",
"Operating System :: OS Independent",
]
keywords = [
"async",
"python",
"runner",
"subprocess",
"multiprocessing",
"threading",
"process",
]
license = { text = "MPL-2.0" }
[project.urls]
"Homepage" = "https://github.com/xn4p4lm-org/async_python_runner"
"Bug Tracker" = "https://github.com/xn4p4lm-org/async_python_runner/issues"
"Discussions" = "https://github.com/xn4p4lm-org/async_python_runner/discussions"
[project.scripts]
async_python_runner = "async_python_runner:main"