-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (52 loc) · 1.59 KB
/
pyproject.toml
File metadata and controls
55 lines (52 loc) · 1.59 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
50
51
52
53
54
55
# Build System
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
# Project Metadata
[project]
name = "pythonvilag-website"
version = "1.1.0"
description = "Source code that powers the Python Világ website."
readme = "README.md"
requires-python = ">=3.11"
license = { file = "LICENSE" }
authors = [{ name = "Daniel Mizsak", email = "info@pythonvilag.hu" }]
keywords = ["website", "tutorial", "flask", "pythonvilag"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"Flask-SQLAlchemy==3.1.1",
"Flask-WTF==1.2.1",
"Flask==3.0.3",
"gunicorn==23.0.0",
"itsdangerous==2.2.0",
"python-dotenv==1.0.1",
"SQLAlchemy==2.0.32",
"Werkzeug==3.0.3",
# Self maintained
# "private-lecture-automation==0.2.0",
# "checkmark==0.1.0",
]
[project.optional-dependencies]
dev = ["mypy", "pre-commit", "pytest-cov", "pytest", "ruff", "tox"]
[project.urls]
Repository = "https://github.com/PythonVilag/pythonvilag-website/"
Homepage = "https://pythonvilag.hu/"
# Tools
# MyPy
[tool.mypy]
ignore_missing_imports = true
pretty = true
show_column_numbers = true
show_error_context = true
strict = true
warn_unreachable = true
warn_unused_ignores = true
# Pytest
[tool.pytest.ini_options]
addopts = "--cov=pythonvilag_website --cov=tests --cov-config=pyproject.toml --cov-report=term-missing --cov-report=html --cov-report=xml"
testpaths = ["tests"]