Added poetry integration.
Description: * Fixed github actions; * Removed requirements.txt; * Fixed CONTRIBUTING.md; * Fixed black and flake8. Signed-off-by: Pavel <win10@list.ru>
This commit is contained in:
132
pyproject.toml
Normal file
132
pyproject.toml
Normal file
@ -0,0 +1,132 @@
|
||||
[tool.poetry]
|
||||
name = "ormar"
|
||||
version = "0.10.20"
|
||||
description = "A simple async ORM with fastapi in mind and pydantic validation."
|
||||
authors = ["Radosław Drążkiewicz <collerek@gmail.com>"]
|
||||
license = "MIT"
|
||||
readme = "README.md"
|
||||
repository = "https://github.com/collerek/ormar"
|
||||
documentation = "https://collerek.github.io/ormar/"
|
||||
|
||||
keywords = [
|
||||
"orm",
|
||||
"sqlalchemy",
|
||||
"fastapi",
|
||||
"pydantic",
|
||||
"databases",
|
||||
"async",
|
||||
"alembic",
|
||||
]
|
||||
classifiers = [
|
||||
"Development Status :: 4 - Beta",
|
||||
"Environment :: Web Environment",
|
||||
"Intended Audience :: Developers",
|
||||
"License :: OSI Approved :: MIT License",
|
||||
"Operating System :: OS Independent",
|
||||
"Topic :: Internet :: WWW/HTTP",
|
||||
"Framework :: AsyncIO",
|
||||
"Programming Language :: Python :: 3",
|
||||
"Programming Language :: Python :: 3.6",
|
||||
"Programming Language :: Python :: 3.7",
|
||||
"Programming Language :: Python :: 3.8",
|
||||
"Programming Language :: Python :: 3.9",
|
||||
"Programming Language :: Python :: 3 :: Only",
|
||||
]
|
||||
|
||||
|
||||
[tool.poetry.dependencies]
|
||||
python = "^3.6.2"
|
||||
databases = ">=0.3.2,<0.5.3"
|
||||
pydantic = ">=1.6.1,!=1.7,!=1.7.1,!=1.7.2,!=1.7.3,!=1.8,!=1.8.1,<=1.8.2"
|
||||
SQLAlchemy = ">=1.3.18,<1.4.26"
|
||||
asyncpg = {version = "^0.24.0", optional = true}
|
||||
psycopg2-binary = {version = "^2.9.1", optional = true}
|
||||
aiomysql = {version = "^0.0.21", optional = true}
|
||||
aiosqlite = {version = "^0.17.0", optional = true}
|
||||
cryptography = {version = "^35.0.0", optional = true}
|
||||
|
||||
[tool.poetry.dependencies.orjson]
|
||||
version = "^3.6.4"
|
||||
optional = true
|
||||
python = ">=3.7"
|
||||
|
||||
[tool.poetry.dependencies.typing-extensions]
|
||||
version = "^3.7"
|
||||
python = "<3.8"
|
||||
|
||||
[tool.poetry.dependencies.importlib-metadata]
|
||||
version = ">=1.0"
|
||||
python = "<3.8"
|
||||
|
||||
|
||||
[tool.poetry.dev-dependencies]
|
||||
# Async database driversy
|
||||
aiomysql = "^0.0.21"
|
||||
aiosqlite = "^0.17.0"
|
||||
aiopg = "^1.3.2"
|
||||
asyncpg = "^0.24.0"
|
||||
|
||||
# Sync database drivers for standard tooling around setup/teardown/migrations.
|
||||
psycopg2-binary = "^2.9.1"
|
||||
mysqlclient = "^2.0.3"
|
||||
PyMySQL = ">=0.9,<=0.9.3"
|
||||
|
||||
# Testing
|
||||
pytest = "^6.2.5"
|
||||
pytest-cov = "^3.0.0"
|
||||
codecov = "^2.1.12"
|
||||
pytest-asyncio = "^0.15.1"
|
||||
fastapi = "^0.70.0"
|
||||
flake8 = "^3.9.2"
|
||||
flake8-black = "^0.2.3"
|
||||
flake8-bugbear = "^21.9.2"
|
||||
flake8-import-order = "^0.18.1"
|
||||
flake8-bandit = "^2.1.2"
|
||||
flake8-builtins = "^1.5.3"
|
||||
flake8-variables-names = "^0.0.4"
|
||||
flake8-cognitive-complexity = "^0.1.0"
|
||||
flake8-functions = "^0.0.6"
|
||||
flake8-expression-complexity = "^0.0.9"
|
||||
|
||||
# types
|
||||
mypy = "^0.910"
|
||||
types-ujson = "^0.1.1"
|
||||
types-PyMySQL = "^1.0.2"
|
||||
types-ipaddress = "^1.0.0"
|
||||
types-enum34 = "^1.1.0"
|
||||
types-cryptography = "^3.3.5"
|
||||
types-orjson = "^3.6.0"
|
||||
types-aiofiles = "^0.1.9"
|
||||
types-pkg-resources = "^0.1.3"
|
||||
types-requests = "^2.25.9"
|
||||
types-toml = "^0.10.0"
|
||||
|
||||
# Documantation
|
||||
mkdocs = "^1.2.2"
|
||||
mkdocs-material = "^7.3.2"
|
||||
mkdocs-material-extensions = "^1.0.3"
|
||||
pydoc-markdown = {version = "^4.3.2", markers = "python_version > '3.7'"}
|
||||
dataclasses = {version = ">=0.6.0,<0.8 || >0.8,<1.0.0" }
|
||||
|
||||
# Performance testing
|
||||
yappi = "^1.3.3"
|
||||
|
||||
[tool.poetry.extras]
|
||||
postgresql = ["asyncpg", "psycopg2-binary"]
|
||||
postgres = ["asyncpg", "psycopg2-binary"]
|
||||
mysql = ["aiomysql"]
|
||||
sqlite = ["sqlite"]
|
||||
orjson = ["orjson"]
|
||||
crypto = ["cryptography"]
|
||||
dev = [
|
||||
"asyncpg",
|
||||
"psycopg2-binary",
|
||||
"aiomysql",
|
||||
"sqlite",
|
||||
"orjson",
|
||||
"cryptography",
|
||||
]
|
||||
|
||||
[build-system]
|
||||
requires = ["poetry-core>=1.0.0"]
|
||||
build-backend = "poetry.core.masonry.api"
|
||||
Reference in New Issue
Block a user