Skip to content

Commit

Permalink
Added pyproject.toml instead of setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
chrstphe committed Mar 24, 2023
1 parent 9bf26ec commit d00c1cd
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 21 deletions.
28 changes: 28 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# pyproject.toml

[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "facecroppy"
version = "0.2.0"
description = "Smart face cropping tool for image processing"
readme = "README.md"
authors = [{ name = "BIFF", email = "info@biff.ai" }]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
keywords = ["facecropping", "tool", "ai"]
dependencies = [
"mtcnn >= 5.2.0",
"opencv-pytho >= 4.1.0",
"tensorflow >= 2.11.1
]
requires-python = ">=3.7"

[project.urls]
Homepage = "https://biff.ai/bif-0001"
21 changes: 0 additions & 21 deletions setup.py

This file was deleted.

0 comments on commit d00c1cd

Please sign in to comment.