64 lines
2.2 KiB
TOML
64 lines
2.2 KiB
TOML
[build-system]
|
|
requires = ["setuptools>=80.9", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "myutils"
|
|
version = "0.5.0"
|
|
description = "Base useful classes."
|
|
readme = "README.md"
|
|
authors = [
|
|
{ name = "Kodjo Sossouvi", email = "kodjo.sossouvi@gmail.com" },
|
|
]
|
|
maintainers = [
|
|
{ name = "Kodjo Sossouvi", email = "kodjo.sossouvi@gmail.com" }
|
|
]
|
|
license = "MIT"
|
|
requires-python = ">=3.8"
|
|
classifiers = [
|
|
"Operating System :: OS Independent",
|
|
"Framework :: FastAPI",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.8",
|
|
"Programming Language :: Python :: 3.9",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
"Topic :: Auth",
|
|
]
|
|
|
|
# -------------------------------------------------------------------
|
|
# Core dependencies from your README
|
|
# Note: 'requirements.txt' is for development, this is for the package
|
|
# You can use pipdeptree to get the tree of required packages `pip install pipdeptree`
|
|
# -------------------------------------------------------------------
|
|
dependencies = [
|
|
]
|
|
|
|
[project.urls]
|
|
# Optional: Link to your internal repository or documentation
|
|
Homepage = "https://gitea.sheerka.synology.me/kodjo/MyUtils"
|
|
Documentation = "https://gitea.sheerka.synology.me/kodjo/MyUtils#readme"
|
|
Repository = "https://gitea.sheerka.synology.me/kodjo/MyUtils"
|
|
Issues = "https://gitea.sheerka.synology.me/kodjo/MyUtils/issues"
|
|
|
|
# -------------------------------------------------------------------
|
|
# Optional dependencies ("extras")
|
|
# This allows users to install only what they need, e.g.:
|
|
# pip install myauth[mongodb,email]
|
|
# -------------------------------------------------------------------
|
|
[project.optional-dependencies]
|
|
# For development and testing (from your requirements.txt)
|
|
dev = [
|
|
"pytest",
|
|
]
|
|
|
|
# -------------------------------------------------------------------
|
|
# Setuptools configuration
|
|
# This section tells the build system where to find your package code
|
|
# -------------------------------------------------------------------
|
|
[tool.setuptools]
|
|
package-dir = {"" = "src"}
|
|
packages = ["myutils"]
|
|
|