forked from rudymatela/python-leancheck
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (30 loc) · 996 Bytes
/
pyproject.toml
File metadata and controls
34 lines (30 loc) · 996 Bytes
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
# pyproject.toml for python-leancheck
#
# (C) 2023-2025 Rudy Matela
# Distributed under the LGPL v2.1 or later (see the file LICENSE)
[project]
name = "leancheck"
version = "0.1.1"
authors = [
{ name="Rudy Matela", email="rudy@matela.com.br" }
]
description = "Enumerative property-based testing"
readme = "README.md"
license = "LGPL-2.1-or-later"
dependencies = [] # none: standard/built-in Python libraries
classifiers = [
"Development Status :: 3 - Alpha",
"Topic :: Software Development :: Testing",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
]
[project.urls]
"Homepage" = "https://github.com/rudymatela/python-leancheck"
"Bug Tracker" = "https://github.com/rudymatela/python-leancheck/issues"
"Repository" = "https://github.com/rudymatela/python-leancheck.git"
"Documentation" = "https://leancheck.github.io/"
[tool.pytest.ini_options]
pythonpath = ["src"]
[tool.setuptools.packages.find]
where = ["src"]