-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
92 lines (82 loc) · 2.16 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[project]
name = "FlowTutor"
description = "A graphical programming environment using flowcharts."
version = "0.11.1"
readme = "README.md"
authors = [
{name = "Thomas Rößl", email = "e11775192@student.tuwien.ac.at"}
]
requires-python = ">=3.9, <3.13"
dependencies = [
"platformdirs>=4.2",
"blinker>=1.8",
"dearpygui>=1.11",
"Shapely>=2.0",
"dependency-injector-fork>=4.42",
"pygdbmi>=0.11",
"urllib3>=2.2",
"Jinja2>=3.1"
]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"Topic :: Education",
"Topic :: Software Development",
"Intended Audience :: Education",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)"
]
[project.optional-dependencies]
testing = [
"pytest>=8.2",
"pytest-cov>=5.0",
"mypy>=1.10",
"flake8>=7.0",
"tox>=4.15"
]
deployment = [
"pynsist>=2.8",
"twine>=5.0",
"build>=1.2"
]
[project.urls]
Documentation = "https://github.com/thomasroessl/FlowTutor/wiki"
Source = "https://github.com/thomasroessl/FlowTutor"
Changelog = "https://github.com/thomasroessl/FlowTutor/releases"
[project.scripts]
flowtutor = "flowtutor.main:main"
[project.gui-scripts]
flowtutor = "flowtutor.main:main"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
flowtutor = ["py.typed"]
[build-system]
requires = ["setuptools>=69.5.1", "wheel"]
build-backend = "setuptools.build_meta"
[tool.mypy]
mypy_path = "src"
strict = true
check_untyped_defs = true
disallow_any_generics = true
ignore_missing_imports = true
no_implicit_optional = true
show_error_codes = true
strict_equality = true
warn_redundant_casts = true
warn_return_any = true
warn_unreachable = true
warn_unused_configs = true
disable_error_code = "func-returns-value"
[tool.pytest.ini_options]
addopts = "--cov"
testpaths = [
"tests",
]