-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (53 loc) · 1.58 KB
/
pyproject.toml
File metadata and controls
58 lines (53 loc) · 1.58 KB
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
[tool.poetry]
name = "sqlab"
version = "0.7.15" # copy-pasted from __init__.py
description = "SQL Adventure Builder: a command line tool for creating standalone SQL activities."
authors = ["Aristide Grange"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/laowantong/sqlab/"
keywords = ["education",
"relational",
"database",
"sql",
"games",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Framework :: IPython",
"Intended Audience :: Education",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Database",
"Topic :: Education",
"Topic :: Games/Entertainment",
]
packages = [
{ include = "sqlab", from = "." },
]
exclude = ["sqlab/secrets.py"]
[tool.poetry.dependencies]
python = "^3.8.0"
sqlparse = "^0.4.4"
jupysql = "^0.10.12"
mysql-connector-python= "^8.2.0"
sqlalchemy="^2.0.27"
psycopg2 = "^2.9.9"
cmd2 = "^2.4.3"
markdown2 = {extras = ["all"], version = "^2.5.3"}
[tool.poetry.group.dev.dependencies]
graphviz = "^0.20"
[build-system]
requires = ["poetry-core>=1.0.0", "setuptools"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.urls]
issues = "https://github.com/laowantong/sqlab/issues"
[tool.poetry.scripts]
sqlab = 'sqlab.__main__:main'