-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpyproject.toml
55 lines (49 loc) · 1.62 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
48
49
50
51
52
53
54
55
[tool.poetry]
name = "preql"
version = "0.2.18"
description = "An interpreted relational query language that compiles to SQL"
authors = ["Erez Shin <[email protected]>"]
license = "Interface-Protection Clause + MIT"
readme = "README.md"
repository = "https://github.com/erezsh/Preql"
documentation = "https://preql.readthedocs.io/en/latest/"
classifiers = [
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Development Status :: 4 - Beta",
"License :: Free To Use But Restricted",
"Environment :: Console",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Database :: Database Engines/Servers",
"Topic :: Database :: Front-Ends",
"Topic :: Software Development :: Compilers",
"Topic :: Software Development :: Interpreters",
"Typing :: Typed"
]
packages = [{ include = "preql" }]
[tool.poetry.dependencies]
python = "^3.6"
lark-parser = "^0.11.3"
runtype = "^0.2.4"
dsnparse = "*"
prompt-toolkit = "*"
pygments = "*"
rich = "*"
arrow = "*"
psycopg2 = { version = "*", optional = true }
mysqlclient = { version = "*", optional = true }
starlette = { version = "*", optional = true }
[tool.poetry.extras]
mysql = ["mysqlclient"]
pgsql = ["psycopg2"]
server = ["starlette"]
[tool.poetry.dev-dependencies]
parameterized = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
preql = 'preql.__main__:main'