-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
36 lines (32 loc) · 924 Bytes
/
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
[project]
name = "upload"
version = "2.1.0"
description = "HTML5 Upload library with Django backend and image manipulation tools"
readme = "README.md"
license = { text = "BSD License" }
keywords = ["upload", "photos", "files", "django", "app", "crop", "gallery"]
authors = [
{ name = "fmalina", email = "[email protected]" }
]
classifiers = [
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Framework :: Django",
"Operating System :: OS Independent",
]
requires-python = ">=3.10"
dependencies = [
"django>=3.0",
"Pillow",
]
[project.urls]
"Homepage" = "https://github.com/fmalina/upload"
"Repository" = "https://github.com/fmalina/upload"
[tool.setuptools]
packages = ["upload"]
include-package-data = true
[tool.setuptools.package-data]
"upload" = ["templates/*", "static/*"]
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"