forked from nackjicholson/aiosql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
68 lines (61 loc) · 1.6 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "aiosql"
version = "10.1"
authors = [ { name = "William Vaughn et al.", email = "vaughnwilld@gmail.com" } ]
description = "Simple SQL in Python"
readme = "README.rst"
requires-python = ">=3.8"
license = { text = "BSD 2-Clause License" }
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent"
]
[project.optional-dependencies]
dev = [
"pytest<8", "pytest-asyncio",
"rstcheck", "black", "coverage", "flake8", "ruff",
"mypy", "pyright", "types-setuptools", "build"
]
dev-duckdb = [
"duckdb"
]
dev-sqlite = [
"aiosqlite", "apsw"
]
dev-postgres = [
"pytest-postgresql",
"asyncpg",
"psycopg>=3", "psycopg2", "psycopg2-binary",
"pygresql", "pg8000"
]
dev-mysql = [
"pytest-mysql",
"mysqlclient", "mysql-connector-python", "pymysql"
]
dev-mariadb = [
"mariadb"
]
dist = [
"build", "wheel", "twine",
"sphinx >= 4, < 5", "sphinx-rtd-theme >= 0.5.2"
]
[tool.setuptools.package-data]
aiosql = [ "py.typed" ]
[tool.setuptools.packages.find]
include = [ "aiosql", "aiosql.adapters" ]
exclude = [ "tests" ]
[project.urls]
repository = "https://github.com/nackjicholson/aiosql"
documentation = "https://nackjicholson.github.io/aiosql/"
issues = "https://github.com/nackjicholson/aiosql/issues"
package = "https://pypi.org/project/aiosql/"
[tool.black]
line-length = 100
target-version = ["py38"]
[tool.mypy]
exclude = ["(build|venv)/", ".*/virtualenvs/.*"]
ignore_missing_imports = true