๐Ÿ“ฆ aminalaee / mongox

๐Ÿ“„ pyproject.toml ยท 65 lines
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[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "mongox"
version = "0.1.2"
description = "Python Mongodb ODM using Motor and Pydantic"
authors = ["Amin Alaee <mohammadamin.alaee@gmail.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/aminalaee/mongox"
repository = "https://github.com/aminalaee/mongox"
keywords = ["mongodb", "asyncio", "odm", "databases"]
classifiers = [
    "Intended Audience :: Developers",
    "Operating System :: OS Independent",
    "Typing :: Typed",
    "Development Status :: 4 - Beta",
    "Framework :: AsyncIO",
    "License :: OSI Approved :: MIT License",
    "Programming Language :: Python",
    "Programming Language :: Python :: 3",
    "Programming Language :: Python :: 3 :: Only",
    "Programming Language :: Python :: 3.7",
    "Programming Language :: Python :: 3.8",
    "Programming Language :: Python :: 3.9",
    "Programming Language :: Python :: 3.10",
    "Topic :: Database",
    "Topic :: Software Development :: Libraries :: Python Modules",
]

[tool.poetry.dependencies]
python = ">=3.7,<4.0"
motor = "^2.4"
pydantic = "^1.8"

[tool.poetry.dev-dependencies]
pytest = "^7.1"
isort = "^5.10.0"
black = "^22.10"
flake8 = "^5.0.4"
mypy = "^0.971"
coverage = {extras = ["toml"], version = "^6.4"}
mkdocs = "^1.2.4"
autoflake = "^1.4"
pytest-asyncio = "^0.18.3"
mkdocs-material = "^8.2.7"
mkautodoc = "^0.1.0"
starlette = {extras = ["full"], version = "^0.21.0"}

[tool.isort]
profile = "black"
combine_as_imports = "True"

[tool.coverage.run]
source_pkgs = [
    "mongox",
    "tests",
]

[tool.mypy]
disallow_untyped_defs = "True"
ignore_missing_imports = "True"