1 Star 0 Fork 0

newlife / tortoise-orm

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pyproject.toml 3.11 KB
一键复制 编辑 原始数据 按行查看 历史
long2ice 提交于 2021-10-06 23:35 . Add black opts in pyproject.toml
[tool.poetry]
name = "tortoise-orm"
version = "0.17.8"
description = "Easy async ORM for python, built with relations in mind"
authors = ["Andrey Bondar <andrey@bondar.ru>", "Nickolas Grigoriadis <nagrigoriadis@gmail.com>", "long2ice <long2ice@gmail.com>"]
license = "Apache-2.0"
readme = "README.rst"
homepage = "https://github.com/tortoise/tortoise-orm"
repository = "https://github.com/tortoise/tortoise-orm.git"
documentation = "https://tortoise-orm.readthedocs.io"
keywords = ["sql", "mysql", "postgres", "psql", "sqlite", "aiosqlite", "asyncpg", "relational", "database", "rdbms", "orm", "object mapper", "async", "asyncio", "aio"]
packages = [
{ include = "tortoise" }
]
include = ["CHANGELOG.rst", "LICENSE", "README.rst"]
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: PL/SQL",
"Framework :: AsyncIO",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Database",
"Operating System :: POSIX",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
]
[tool.poetry.dependencies]
python = "^3.7"
pypika-tortoise = "^0.1.1"
iso8601 = "^0.1.13"
aiosqlite = ">=0.16.0, <0.18.0"
pytz = "*"
ciso8601 = { version = "^2.1.2", markers = "sys_platform != 'win32' and implementation_name == 'cpython'", optional = true }
uvloop = { version = "^0.14.0", markers = "sys_platform != 'win32' and implementation_name == 'cpython'", optional = true }
python-rapidjson = { version = "*", optional = true }
asyncpg = { version = "*", optional = true }
aiomysql = { version = "*", optional = true }
asyncmy = { version = "*", optional = true }
[tool.poetry.dev-dependencies]
# Linter tools
mypy = "*"
importlib_metadata = "*" # required by flake8
flake8-isort = "*"
flake8-comprehensions = "*"
darglint = "*"
pylint = "*"
pygments = "*"
bandit = "*"
black = "*"
# Test tools
tox = "*"
asynctest = "*"
green = "*"
coveralls = "*"
pytest = "*"
nose2 = "*"
pytest-xdist = "*"
pytest-cov = "*"
# Pypi
twine = "*"
# Sample integration - Quart
quart = "*"
# Sample integration - Sanic
sanic = "*"
# Sample integration - Starlette
starlette = "*"
# Pydantic support
pydantic = "*"
# FastAPI support
fastapi = "*"
# Aiohttp support
aiohttp = "*"
# BlackSheep support
blacksheep = "^1.0.9"
# mypy
types-PyYAML = "*"
types-pytz = "*"
types-PyMySQL = "*"
# Documentation tools
sphinx = "*"
sphinx-material = "*"
Pygments = "*"
docutils = "*"
sphinx-copybutton = "*"
[tool.poetry.extras]
accel = ["ciso8601", "uvloop", "python-rapidjson"]
asyncpg = ["asyncpg"]
aiomysql = ["aiomysql"]
asyncmy = ["asyncmy"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 100
target-version = ['py36', 'py37', 'py38', 'py39']
Python
1
https://gitee.com/newlife/tortoise-orm.git
git@gitee.com:newlife/tortoise-orm.git
newlife
tortoise-orm
tortoise-orm
master

搜索帮助