-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (35 loc) · 1.04 KB
/
pyproject.toml
File metadata and controls
39 lines (35 loc) · 1.04 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
[build-system]
requires = ["setuptools>=77.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "micropytest"
version = "0.20.0"
description = "A micro test runner"
readme = { file = "README.md", content-type = "text/markdown" }
authors = [
{ name="Thomas Fischer", email="tfischer@beamng.gmbh" }
]
license = "MIT"
requires-python = ">=3.9"
dependencies = [
"rich>=10.0.0",
"pydantic>=2.11",
"requests>=2.32",
"psutil>=7.0.0",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Operating System :: OS Independent",
"Topic :: Software Development :: Testing"
]
keywords = ["pytest", "micro", "test-runner"]
[project.urls]
"Homepage" = "https://github.com/BeamNG/micropytest"
"Issues" = "https://github.com/BeamNG/micropytest/issues"
"Changelog" = "https://github.com/BeamNG/micropytest?tab=readme-ov-file#changelog"
[project.optional-dependencies]
color = ["colorama"]
[project.scripts]
micropytest = "micropytest.cli:console_main"