Added setup and basic module sources.
This commit is contained in:
30
pyproject.toml
Normal file
30
pyproject.toml
Normal file
@@ -0,0 +1,30 @@
|
||||
[project]
|
||||
name = "facebias"
|
||||
version = "0.0.1"
|
||||
description = "Face image bias estimation and benchmarking"
|
||||
license = "MIT"
|
||||
readme = "README.md"
|
||||
requires-python = ">= 3.12"
|
||||
|
||||
[build-system]
|
||||
requires = ["setuptools >= 77.0.3"]
|
||||
build-backend = "setuptools.build_meta"
|
||||
|
||||
[tool.setuptools]
|
||||
package-dir = {"" = "src"}
|
||||
|
||||
[tool.setuptools.packages.find]
|
||||
where = ["src"]
|
||||
|
||||
[tool.setuptools.dynamic]
|
||||
dependencies = {file = ["requirements.txt"]}
|
||||
|
||||
[project.optional-dependencies]
|
||||
dev = [
|
||||
"jedi-language-server>=0.46.0",
|
||||
"black>=25.12.0",
|
||||
"flake8>=7.3.0",
|
||||
"isort>=8.0.1",
|
||||
"mypy>=1.19.0",
|
||||
"pytest>=9.0.0"
|
||||
]
|
||||
Reference in New Issue
Block a user