forked from xnuinside/simple-ddl-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
47 lines (42 loc) · 1.56 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 = "simple-ddl-parser"
version = "1.6.1"
description = "Simple DDL Parser to parse SQL & dialects like HQL, TSQL (MSSQL), Oracle, AWS Redshift, Snowflake, MySQL, PostgreSQL, etc ddl files to json/python dict with full information about columns: types, defaults, primary keys, etc.; sequences, alters, custom types & other entities from ddl."
authors = ["Iuliia Volkova <xnuinside@gmail.com>"]
license = "MIT"
readme = "docs/README.rst"
homepage = "https://github.com/xnuinside/simple-ddl-parser"
repository = "https://github.com/xnuinside/simple-ddl-parser"
classifiers = [
"Programming Language :: PL/SQL",
"Programming Language :: SQL",
"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",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[[tool.poetry.source]]
name = "pypi-public"
url = "https://pypi.org/simple/"
[tool.poetry.dependencies]
python = "^3.6"
dataclasses = { version = "0.8", python = ">=3.6,<3.7" }
ply = "^3.11"
[tool.poetry.dev-dependencies]
pytest = "^7.0"
m2r = "^0.3.1"
twine = "^3.3.0"
black = "^20.8b1"
flake8 = "^4.0.1"
mistune = "0.8.4"
[tool.poetry.scripts]
sdp = 'simple_ddl_parser.cli:main'
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"