-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
39 lines (34 loc) · 1.13 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
[tool.poetry]
name = "django-fullstack"
version = "0.5.0"
description = "make your project frontend + django with django-fullstack, it's so easy"
license = "MIT"
authors = ["Raja Sunrise <[email protected]>"]
repository = "https://github.com/rajasunrise/django-fullstack"
packages = [{include = "django_fullstack"}]
keywords = ["django-fullstack", "react", "vitejs", "vue", "django"]
readme = "README.md"
classifiers=[
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Topic :: Utilities",
]
[tool.poetry.dependencies]
python = "^3.9"
Django = ">=3.0, <=6.0"
requests = ">=2.28.2, <2.40.0"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
[tool.poetry.scripts]
django-fullstack = "django_fullstack.scripts.django_fullstack:run"
[build-system]
requires = [
"poetry-core>=1.0.0",
]
build-backend = "poetry.core.masonry.api"