forked from alan-turing-institute/sqlsynthgen
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (68 loc) · 1.92 KB
/
pyproject.toml
File metadata and controls
76 lines (68 loc) · 1.92 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
66
67
68
69
70
71
72
73
74
75
76
[tool.poetry]
name = "datafaker"
version = "0.2.3"
description = "Generates fake SQL data"
authors = ["Tim Band <3266052+tim-band@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/SAFEHR-data/datafaker"
[tool.poetry.dependencies]
python = ">=3.10,<3.14"
pydantic = {extras = ["dotenv"], version = "^1.10.2"}
psycopg2-binary = "^2.9.5"
sqlalchemy-utils = "^0.41.2"
mimesis = "^18.0.0"
typer = "^0.15.4"
pyyaml = "^6.0"
sqlalchemy = "==2.0.44"
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"
asyncpg = "^0.30.0"
greenlet = "^3.1.1"
pymysql = "^1.1.0"
pandas = "^2"
parsy = "^2.1"
prettytable = "^3.15.1"
duckdb-engine = "^0.17.0"
fastparquet = "^2024.11.0"
[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 = "^1.3.4"
pre-commit = "^3.3.3"
testing-postgresql = "^1.3.0"
duckdb = "^1.4.3"
sphinx-rtd-theme = "^1.2.0"
sphinxcontrib-napoleon = "^0.7"
sphinxcontrib-mermaid = "^2.0.0"
[tool.poetry.group.extras.dependencies]
tqdm = "^4.65.0"
[tool.poetry.extras]
docs = ["sphinx-rtd-theme", "sphinxcontrib-napoleon", "sphinxcontrib-mermaid"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
datafaker = "datafaker.main:datafaker"
[tool.isort]
profile = "black"
[tool.esbonio.sphinx]
buildCommand = ["sphinx-build", "-b", "html", "docs/source", "docs/esbonio-build"]
pythonCommand = ["poetry", "run", "python"]