-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (38 loc) · 1.08 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
[build-system]
requires = [
"hatchling",
"hatch-vcs",
]
build-backend = "hatchling.build"
[project]
name = "toffee-test"
description = "pytest plugin for toffee testing"
readme = "README.md"
license = {file="LICENSE"}
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: Pytest",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
"License :: OSI Approved :: Mulan Permissive Software License v2 (MulanPSL-2.0)",
]
requires-python = ">=3.8"
dependencies = [
'pytest>=7.0.0',
'pytest-reporter-html1>=0.8.4',
'pytest-xdist>=3.5.0',
'pytest-asyncio>=0.23.0',
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/XS-MLVP/toffee-test"
Source = "https://github.com/XS-MLVP/toffee-test"
Tracker = "https://github.com/XS-MLVP/toffee-test/issues"
[project.entry-points.pytest11]
toffee-test = "toffee_test.plugin"
[tool.hatch.build.targets.sdist]
exclude = ["/.github"]
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "toffee_test/__version.py"