-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (46 loc) · 1.32 KB
/
pyproject.toml
File metadata and controls
50 lines (46 loc) · 1.32 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
[build-system]
requires = ["setuptools>=70", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "mylonite"
version = "0.1.0"
description = "Self-hosted portfolio and career-record platform"
readme = "README.md"
requires-python = ">=3.12"
license = "AGPL-3.0-or-later"
license-files = ["LICENSE"]
authors = [
{ name = "Remy Duijsens" }
]
keywords = ["django", "portfolio", "self-hosted", "cv", "career-record"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 5.2",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
]
dependencies = [
"Django>=5.2,<7.0",
"gunicorn>=23.0,<26.0",
"whitenoise>=6.8,<7.0",
]
[project.urls]
Homepage = "https://github.com/remdui/mylonite"
Repository = "https://github.com/remdui/mylonite"
Issues = "https://github.com/remdui/mylonite/issues"
[tool.setuptools.packages.find]
include = ["mylonite*", "apps*"]
[project.optional-dependencies]
dev = [
"coverage[toml]>=7.6,<8.0",
"pytest-django>=4.9",
"ruff>=0.9",
"django-debug-toolbar>=5.0",
]