-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (27 loc) · 815 Bytes
/
pyproject.toml
File metadata and controls
34 lines (27 loc) · 815 Bytes
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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "mathapp"
version = "0.1.0"
description = "MathApp is a Django-based web application that provides math learning materials for high school students"
long_description = "file: README.md"
author = "Julia Drężek"
author_email = "jul.drezek@gmail.com"
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Education",
"Topic :: Education",
"Programming Language :: Python :: 3.10",
"Framework :: Django :: 4.1"
]
keywords = "mathematics, maths, learning, high school"
packages = ["your_package"]
install_requires = [
"Django==4.1",
"django-nested-admin==4.0.2",
"Pillow==9.3.0",
"psycopg2==2.9.9"
]
[project.urls]
"Source" = "https://github.com/drezi29/mathapp"