-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
40 lines (35 loc) · 1.3 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
[tool.poetry]
name = "py-models-parser"
version = "0.7.0"
description = "Parser for Different Python Models (Pydantic, Enums, ORMs: Tortoise, SqlAlchemy, GinoORM, PonyORM, Pydal tables) to extract information about columns(attrs), model, table args,etc in one format."
authors = ["Iuliia Volkova <[email protected]>"]
license = "MIT"
readme = "docs/README.rst"
homepage = "https://github.com/xnuinside/py-models-parser"
repository = "https://github.com/xnuinside/py-models-parser"
classifiers = [
"Programming Language :: PL/SQL",
"Programming Language :: SQL",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
"Topic :: Software Development :: Code Generators",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11"
]
[tool.poetry.dependencies]
python = "^3.7"
parsimonious = "^0.10.0"
[tool.poetry.dev-dependencies]
pytest = "^7.4"
twine = "^4.0"
m2r = "^0.3.1"
[tool.poetry.scripts]
pmp = 'py_models_parser.cli:main'
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"