-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
35 lines (31 loc) · 975 Bytes
/
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
[project]
name = "sqlalchemy-timescaledb"
version = "0.4"
authors = [
{ name="Andrei Kliatsko", email="[email protected]" },
]
description = "A SQLAlchemy dialect for TimescaleDB"
readme = "README.md"
dependencies = [
"sqlalchemy>=1.3"
]
[project.optional-dependencies]
test = [
"pytest==7.2.1",
"pytest-cov==4.0.0",
"pytest-factoryboy==2.5.1",
"sqlalchemy[asyncio]>=1.3",
"psycopg2-binary==2.9.5",
"alembic==1.9.4",
"asyncpg==0.27.0",
"pytest-asyncio==0.20.3"
]
[project.urls]
"Homepage" = "https://github.com/dorosch/sqlalchemy-timescaledb"
[project.entry-points."sqlalchemy.dialects"]
"timescaledb" = "sqlalchemy_timescaledb.dialect:TimescaledbPsycopg2Dialect"
"timescaledb.psycopg2" = "sqlalchemy_timescaledb.dialect:TimescaledbPsycopg2Dialect"
"timescaledb.asyncpg" = "sqlalchemy_timescaledb.dialect:TimescaledbAsyncpgDialect"
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"