-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (37 loc) · 1.2 KB
/
pyproject.toml
File metadata and controls
43 lines (37 loc) · 1.2 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
[build-system]
requires = ["setuptools>=61.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pythonrunscript"
version = "0.2.0"
authors = [
{ name="Alexis Gallagher", email="alexis@alexisgallagher.com"},
]
description = "pythonrunscript runs scripts installing their dependencies in cached, isolated environments."
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">= 3.9.6"
keywords = ["scripting"]
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
]
dependencies = []
[tool.setuptools]
packages = ["pythonrunscript"]
[project.urls]
Homepage = "https://github.com/AnswerDotAI/pythonrunscript"
Issues = "https://github.com/AnswerDotAI/pythonrunscript/issues"
[project.scripts]
"pythonrunscript" = "pythonrunscript.pythonrunscript:main"
[project.optional-dependencies]
dev = ["pytest","tomlkit"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "test_*.py"
addopts = "-v --tb=short --import-mode=importlib"
pythonpath = "."