-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (58 loc) · 1.62 KB
/
pyproject.toml
File metadata and controls
65 lines (58 loc) · 1.62 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
59
60
61
62
63
64
65
[tool.poetry]
name = "sqlsynthgen"
version = "0.4.2"
description = "Synthetic SQL data generator"
authors = ["Iain <25081046+Iain-S@users.noreply.github.com>"]
license = "MIT"
readme = "README.md"
classifiers = [
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Database",
"Topic :: Utilities",
]
homepage = "https://github.com/alan-turing-institute/sqlsynthgen"
documentation = "https://sqlsynthgen.readthedocs.io/en/stable/"
[tool.poetry.dependencies]
python = "^3.9,<3.11"
pydantic = {extras = ["dotenv"], version = "^1.10.2"}
psycopg2-binary = "^2.9.5"
sqlalchemy-utils = "^0.38.3"
mimesis = "^6.1.1"
typer = "^0.7.0"
pyyaml = "^6.0"
sqlalchemy = "^2"
sphinx-rtd-theme = {version = "^1.2.0", optional = true}
sphinxcontrib-napoleon = {version = "^0.7", optional = true}
smartnoise-sql = "^1"
jinja2 = "^3.1.2"
black = "^23.3.0"
jsonschema = "^4.17.3"
sqlacodegen = "^3.0.0rc3"
asyncpg = "^0.27.0"
greenlet = "^2.0.2"
pymysql = "^1.1.0"
pandas = "^2"
[tool.poetry.group.dev.dependencies]
isort = "^5.10.1"
pylint = "^3"
mypy = "^1.5"
types-pyyaml = "^6.0.12.4"
pydocstyle = "^6.3.0"
restructuredtext-lint = "^1.4.0"
pygments = "^2.14.0"
rstcheck-core = {extras = ["sphinx"], version = "^1.0.3"}
json-schema-for-humans = "^0.44.5"
pre-commit = "^3.3.3"
[tool.poetry.group.extras.dependencies]
tqdm = "^4.65.0"
[tool.poetry.extras]
docs = ["sphinx-rtd-theme", "sphinxcontrib-napoleon"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
sqlsynthgen = "sqlsynthgen.main:app"
[tool.isort]
profile = "black"