-
Notifications
You must be signed in to change notification settings - Fork 65
/
Copy pathpyproject.toml
53 lines (50 loc) · 1.11 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[project]
name = "eCommerce"
version = "0.0.1"
dependencies = []
requires-python = ">=3.13,<3.14"
authors = [
{ name = "Kamil Kosiba", email = "[email protected]" }
]
maintainers = [
{ name = "Kamil Kosiba", email = "[email protected]" }
]
description = "Django backend for eCommerce project"
readme = "README.md"
keywords = ["api", "backend", "payments", "newsletter", "accounts", "stripe"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.13",
]
[project.optional-dependencies]
base = [
# django-webpack-loader
"Django>=5.1,<5.2",
"Pillow",
"django-allauth==0.54.0",
"django-cors-headers",
"dj-rest-auth",
"django-taggit",
"djangorestframework",
"djangorestframework-simplejwt",
"psycopg2",
"python-decouple",
"stripe",
]
development = [
"pylint",
"coverage",
"pytest",
"pytest-django",
]
production = [
"boto3",
"django-storages",
"gunicorn",
]
[project.urls]
Repository = "https://github.com/kkosiba/ecommerce-backend"
[tool.setuptools]
py-modules = []