-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (37 loc) · 1.1 KB
/
pyproject.toml
File metadata and controls
40 lines (37 loc) · 1.1 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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "PureMVC"
version = "2.0.2"
requires-python = ">=3.8"
authors = [{ name = "Saad Shams", email = "saad.shams@puremvc.org" }]
description = "PureMVC Multicore Framework"
readme = "README.md"
license = "BSD-3-Clause"
keywords = ["puremvc", "mvc", "model", "view", "controller", "patterns"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Topic :: Utilities"
]
[project.urls]
Homepage = "https://puremvc.org"
Source = "https://github.com/PureMVC/puremvc-python-multicore-framework"
Documentation = "https://puremvc.org/puremvc-python-multicore-framework/"
[tool.mypy]
python_version = "3.9"
mypy_path = ["src"]
explicit_package_bases = true
namespace_packages = true
ignore_missing_imports = false
disallow_untyped_defs = true
disallow_incomplete_defs = true
check_untyped_defs = true
warn_unused_ignores = true
warn_return_any = true
warn_unused_configs = true
strict_equality = true
show_error_codes = true
pretty = true