|
1 | 1 | # Build System |
2 | 2 | [build-system] |
3 | | -requires = ["hatchling"] |
4 | | -build-backend = "hatchling.build" |
| 3 | + requires = ["hatchling"] |
| 4 | + build-backend = "hatchling.build" |
5 | 5 |
|
6 | 6 | # Project Metadata |
7 | 7 | [project] |
8 | | -name = "pythonvilag-website" |
9 | | -version = "1.0.1" |
10 | | -description = "Source code that powers the Python Világ website." |
11 | | -readme = "README.md" |
12 | | -requires-python = ">=3.11" |
13 | | -license = { file = "LICENSE" } |
14 | | -authors = [{ name = "Daniel Mizsak", email = "info@pythonvilag.hu" }] |
15 | | -keywords = ["website", "tutorial", "flask", "pythonvilag"] |
16 | | -classifiers = [ |
| 8 | + name = "pythonvilag-website" |
| 9 | + version = "1.1.0" |
| 10 | + description = "Source code that powers the Python Világ website." |
| 11 | + readme = "README.md" |
| 12 | + requires-python = ">=3.11" |
| 13 | + license = { file = "LICENSE" } |
| 14 | + authors = [{ name = "Daniel Mizsak", email = "info@pythonvilag.hu" }] |
| 15 | + keywords = ["website", "tutorial", "flask", "pythonvilag"] |
| 16 | + classifiers = [ |
17 | 17 | "License :: OSI Approved :: MIT License", |
18 | 18 | "Programming Language :: Python :: 3 :: Only", |
19 | 19 | "Programming Language :: Python :: 3.11", |
20 | 20 | "Programming Language :: Python :: 3.12", |
21 | | -] |
22 | | -dependencies = [ |
| 21 | + ] |
| 22 | + dependencies = [ |
23 | 23 | "Flask-SQLAlchemy==3.1.1", |
24 | 24 | "Flask-WTF==1.2.1", |
25 | | - "Flask==3.0.2", |
26 | | - "gunicorn==21.2.0", |
27 | | - "itsdangerous==2.1.2", |
| 25 | + "Flask==3.0.3", |
| 26 | + "gunicorn==23.0.0", |
| 27 | + "itsdangerous==2.2.0", |
28 | 28 | "python-dotenv==1.0.1", |
29 | | - "SQLAlchemy==2.0.27", |
30 | | - "Werkzeug==3.0.1", |
| 29 | + "SQLAlchemy==2.0.32", |
| 30 | + "Werkzeug==3.0.3", |
31 | 31 | # Self maintained |
32 | 32 | # "private-lecture-automation==0.2.0", |
33 | 33 | # "checkmark==0.1.0", |
34 | | -] |
35 | | -[project.optional-dependencies] |
36 | | -dev = ["mypy", "pre-commit", "pytest-cov", "pytest", "ruff", "tox"] |
37 | | -[project.urls] |
38 | | -Repository = "https://github.com/PythonVilag/pythonvilag-website/" |
39 | | -Homepage = "https://pythonvilag.hu/" |
| 34 | + ] |
| 35 | + [project.optional-dependencies] |
| 36 | + dev = ["mypy", "pre-commit", "pytest-cov", "pytest", "ruff", "tox"] |
| 37 | + [project.urls] |
| 38 | + Repository = "https://github.com/PythonVilag/pythonvilag-website/" |
| 39 | + Homepage = "https://pythonvilag.hu/" |
40 | 40 |
|
41 | 41 | # Tools |
42 | 42 | # MyPy |
43 | 43 | [tool.mypy] |
44 | | -ignore_missing_imports = true |
45 | | -pretty = true |
46 | | -show_column_numbers = true |
47 | | -show_error_context = true |
48 | | -strict = true |
49 | | -warn_unreachable = true |
50 | | -warn_unused_ignores = true |
| 44 | + ignore_missing_imports = true |
| 45 | + pretty = true |
| 46 | + show_column_numbers = true |
| 47 | + show_error_context = true |
| 48 | + strict = true |
| 49 | + warn_unreachable = true |
| 50 | + warn_unused_ignores = true |
51 | 51 |
|
52 | 52 | # Pytest |
53 | 53 | [tool.pytest.ini_options] |
54 | | -addopts = "--cov=pythonvilag_website --cov=tests --cov-config=pyproject.toml --cov-report=term-missing --cov-report=html --cov-report=xml" |
55 | | -testpaths = ["tests"] |
| 54 | + addopts = "--cov=pythonvilag_website --cov=tests --cov-config=pyproject.toml --cov-report=term-missing --cov-report=html --cov-report=xml" |
| 55 | + testpaths = ["tests"] |
0 commit comments