Skip to content

Commit

Permalink
Update and rename setup.py to pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
fmalina authored Sep 16, 2024
1 parent e6c140e commit 3c05f52
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 19 deletions.
35 changes: 35 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "upload"
version = "2.1.0" # Replace with your actual version number
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",
]

[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/*"]
19 changes: 0 additions & 19 deletions setup.py

This file was deleted.

0 comments on commit 3c05f52

Please sign in to comment.