-
Notifications
You must be signed in to change notification settings - Fork 28
/
pyproject.toml
74 lines (67 loc) · 2 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[tool.poetry]
name = "table-evaluator"
version = "1.7.2post1"
description = "A package to evaluate how close a synthetic data set is to real data."
authors = ["Bauke Brenninkmeijer <[email protected]>"]
license = "MIT"
readme = "README.md"
repository ="https://github.com/Baukebrenninkmeijer/Table-Evaluator"
documentation="https://baukebrenninkmeijer.github.io/table-evaluator/index.html"
keywords=['Table-evaluation', 'synthetic-data', 'data-generation', 'data', 'generation', 'data-evaluation']
classifiers = [
'Programming Language :: Python',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3 :: Only',
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[tool.poetry.dependencies]
python = "^3.10"
pyarrow = "^17.0.0"
scikit-learn = "^1.5.1"
tqdm = "^4.66.5"
matplotlib = "^3.9.2"
numpy = "1.26.4"
seaborn = "^0.13.2"
pandas = "^2.0.0"
scipy = "1.11.4"
dython = "0.7.7"
pre-commit = "^3.8.0"
ruff = "^0.6.9"
ipython = "^8.28.0"
[tool.poetry.group.dev.dependencies]
pytest-mock = "^3.14.0"
ipykernel = "^6.29.5"
ipython = "^8.28.0"
m2r2 = "^0.3.3.post2"
sphinx-rtd-theme = "^2.0.0"
pytest = "^8.3.2"
ipywidgets = "^8.1.5"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 120
lint.select = [
"I001", # Isort rules
"N",
"A", # prevent using keywords that clobber python builtins
"B", # bugbear: security warnings
"E", # pycodestyle
"F", # pyflakes
"ISC", # implicit string concatenation
"UP", # alert you when better syntax is available in your python version
"RUF", # the ruff developer's own rules
]
lint.ignore = ["B018", "B023"]
src = ["table_evaluator"]
format.quote-style = "single"
[tool.mypy]
exclude = [
]
python_version = "3.10"
[[tool.mypy.overrides]]
module = [""]
ignore_missing_imports = true