generated from Xiaokang2022/Template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
51 lines (44 loc) · 1.36 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "maliang-mpl"
authors = [{ name = "Xiaokang2022", email = "2951256653@qq.com" }]
maintainers = [{ name = "Xiaokang2022", email = "2951256653@qq.com" }]
description = "Extension package for maliang to matplotlib"
readme = "README.md"
license = { text = "MIT License" }
requires-python = ">=3.10"
keywords = ["tkinter", "maliang", "matplotlib", "cross-platform", "themed"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Intended Audience :: Developers",
"Typing :: Typed",
]
dependencies = [
"typing-extensions",
"maliang>=3.0.0rc6",
"matplotlib >= 3.7.0",
]
dynamic = ["version"]
[project.urls]
"Bug tracker" = "https://github.com/Xiaokang2022/maliang-mpl/issues"
"Source code" = "https://github.com/Xiaokang2022/maliang-mpl"
[tool.setuptools.dynamic]
version = { attr = "maliang.mpl.__version__" }
[tool.setuptools.packages.find]
include = ["maliang*"]
[tool.pylint]
output-format = "colorized"
reports = "y"
fail-on = "E,F"
fail-under = 9
disable = 'line-too-long'
[tool.pytest.ini_options]
addopts = ["--color=yes", "--reruns=3"]
# python -m build
# python -m twine upload dist/*