-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
33 lines (29 loc) · 956 Bytes
/
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
# pyproject.toml for python-leancheck
#
# (C) 2023-2024 Rudy Matela
# Distributed under the LGPL v2.1 or later (see the file LICENSE)
[project]
name = "leancheck"
version = "0.0.1"
authors = [
{ name="Rudy Matela", email="[email protected]" }
]
description = "Enumerative property-based testing"
readme = "README.md"
license = { text = "LGPL-2.1-or-later" }
dependencies = [] # none: standard/built-in Python libraries
classifiers = [
"License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)",
"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/leancheck"
"Bug Tracker" = "https://github.com/rudymatela/leancheck/issues"
[tool.pytest.ini_options]
pythonpath = ["src"]
[tool.setuptools.packages.find]
where = ["src"]