-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
49 lines (45 loc) · 1.37 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "anodb"
version = "13.0"
authors = [ { name = "Fabien Coelho", email = "ano.db@coelho.net" } ]
description = "Convenient Wrapper around AioSQL and a Database Connection"
readme = "README.md"
license = { text = "CC0" }
requires-python = ">= 3.10"
dependencies = [ "aiosql >= 13.0" ]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication",
"Programming Language :: Python",
"Programming Language :: SQL",
"Topic :: Database :: Front-Ends",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[project.urls]
repository = "https://github.com/zx80/anodb"
documentation = "https://zx80.github.io/anodb/"
issues = "https://github.com/zx80/anodb/issues"
package = "https://pypi.org/project/anodb/"
[tool.setuptools]
py-modules = [ "anodb" ]
[project.optional-dependencies]
dev = [
"mypy", "pyright", "ruff", "flake8", "black", "pymarkdownlnt",
"pytest", "coverage",
"CacheToolsUtils"
]
pub = [ "build", "twine", "wheel" ]
postgres = [
"pytest-postgresql",
# drivers
# 2.9.10 needed for 3.13
"psycopg2 >= 2.9.10; implementation_name != 'pypy'",
"psycopg",
"pygresql",
"pg8000"
]
mysql = [ "pytest-mysql", "mysqlclient", "pymysql", "mysql-connector" ]