-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
47 lines (40 loc) · 1.39 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
[tool.poetry]
name = "asmysql"
version = "1.0.0"
description = "An Asynchronous MySQL Client Engine Using Aiomysql."
license = "MIT"
authors = ["vastxiao <vastxiao@gmail.com>"]
homepage = "https://pypi.org/project/asmysql/"
repository = "https://github.com/Vastxiao/asmysql"
documentation = "https://github.com/Vastxiao/asmysql/blob/main/README.md"
keywords = ["async", "asyncio", "mysql", "aiomysql"]
readme = "README.md"
include = ["CHANGELOG.md", "CHANGELOG_zh.md", "README_zh.md"]
[tool.poetry.urls]
"Readme-zh" = "https://github.com/Vastxiao/asmysql/blob/main/README_zh.md"
"Changelog-zh" = "https://github.com/Vastxiao/asmysql/blob/main/CHANGELOG_zh.md"
"Changelog" = "https://github.com/Vastxiao/asmysql/blob/main/CHANGELOG.md"
"Vastxiao Blog" = "https://vastxiao.github.io/"
"Gitee Repo" = "https://gitee.com/vastxiao/asmysql"
[tool.poetry.dependencies]
python = "^3.9"
aiomysql = "^0.2.0"
[tool.poetry.group.dev.dependencies]
ipython = "*"
sqlmodel = "^0.0.14"
sqlalchemy = {extras = ["asyncio"], version = "^2.0.25"}
aiosqlite = "^0.19.0"
[[tool.poetry.source]]
name = "tx"
url = "https://mirrors.cloud.tencent.com/pypi/simple"
priority = "supplemental"
[[tool.poetry.source]]
name = "PyPI"
priority = "supplemental"
[[tool.poetry.source]]
name = "ali"
url = "https://mirrors.aliyun.com/pypi/simple/"
priority = "primary"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"