54 lines
1.2 KiB
TOML
54 lines
1.2 KiB
TOML
[build-system]
|
|
requires = ["setuptools", "wheel", "setuptools-git-versioning>=2.0,<3"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.setuptools-git-versioning]
|
|
enabled = true
|
|
|
|
[project]
|
|
name = "co3"
|
|
description = "Lightweight Python ORM for hierarchical storage management"
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
dynamic = ["version"]
|
|
#license = {file = "LICENSE"}
|
|
authors = [
|
|
{ name="Sam Griesemer", email="samgriesemer+git@gmail.com" },
|
|
]
|
|
keywords = ["database", "orm"]
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3.12",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
"Development Status :: 3 - Alpha",
|
|
"Intended Audience :: Developers",
|
|
]
|
|
dependencies = [
|
|
"tqdm",
|
|
"wcmatch",
|
|
"numpy",
|
|
"sqlalchemy",
|
|
"colorama",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
tests = ["pytest"]
|
|
docs = [
|
|
"sphinx",
|
|
"sphinx-togglebutton",
|
|
"sphinx-autodoc-typehints",
|
|
"furo",
|
|
"myst-parser",
|
|
]
|
|
jupyter = ["ipykernel"]
|
|
|
|
[project.urls]
|
|
Homepage = "https://doc.olog.io/co3"
|
|
Documentation = "https://doc.olog.io/co3"
|
|
Repository = "https://git.olog.io/olog/co3"
|
|
Issues = "https://git.olog.io/olog/co3/issues"
|
|
|
|
|
|
[tool.setuptools.packages.find]
|
|
include = ["co3*"] # pattern to match package names
|