-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (43 loc) · 1.35 KB
/
pyproject.toml
File metadata and controls
49 lines (43 loc) · 1.35 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
44
45
46
47
48
49
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "doublex"
dynamic = ["version"]
description = "Python test doubles"
readme = "README.rst"
requires-python = ">=3.7"
license = { file = "LICENSE" }
keywords = ["unit tests", "doubles", "stub", "spy", "mock"]
authors = [
{ name = "David Villa Alises", email = "David.Villa@gmail.com" },
{ name = "David Pärsson", email = "david@parsson.se" },
]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing",
]
dependencies = [
"PyHamcrest",
]
[project.urls]
repository = "https://github.com/DavidVilla/python-doublex"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build]
only-packages = true
exclude = ["doublex/test/*"]
[tool.hatch.publish.index]
disable = true
[tool.hatch.build.hooks.vcs]
version-file = "doublex/_version.py"