-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
53 lines (44 loc) · 1.65 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
45
46
47
48
49
50
51
52
53
# ModuleTester setup configuration file
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "ModuleTester"
authors = [{ name = "Codra", email = "[email protected]" }]
description = "ModuleTester is a test management software for Python packages"
readme = "README.md"
license = { file = "LICENSE" }
classifiers = [
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
"Topic :: Software Development :: User Interfaces",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: OS Independent",
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.8, <4"
dependencies = ["guidata >= 3.1", "QtPy >= 1.9", "beautifulsoup4", "click"]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/Codra-Ingenierie-Informatique/ModuleTester/"
Documentation = "https://moduletester.readthedocs.io/en/latest/"
[project.scripts]
moduletester-cli = "moduletester.manager:cli"
[project.gui-scripts]
moduletester = "moduletester.gui:run"
[project.optional-dependencies]
dev = ["black", "isort", "pylint", "Coverage"]
doc = ["PyQt5", "sphinx>6", "pydata_sphinx_theme"]
[tool.setuptools.packages.find]
include = ["moduletester*"]
[tool.setuptools.package-data]
"*" = ["*.svg", "*.mo", "*.txt", "*.json", "*.png"]
[tool.setuptools.dynamic]
version = { attr = "moduletester.__version__" }