forked from sfu-db/dataprep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
111 lines (98 loc) · 2.34 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
[tool.poetry]
authors = ["SFU Database System Lab <[email protected]>"]
description = "Dataprep: Data Preparation in Python"
maintainers = [
"Weiyuan Wu <[email protected]>",
"Jinglin Peng <[email protected]>",
"Pei Wang <[email protected]>",
"Brandon Lockhart <[email protected]>",
"Song Bian <[email protected]>",
"Danrui Qi <[email protected]>",
]
name = "dataprep"
version = "0.4.5"
license = "MIT"
readme = "README.md" # Markdown files are supported
homepage = "https://github.com/sfu-db/dataprep"
repository = "https://github.com/sfu-db/dataprep"
keywords = ["dataprep", "eda", "connector", "data science", "exploratory data analysis", "data exploration"]
classifiers = [
"Development Status :: 4 - Beta",
"Topic :: Software Development :: Build Tools",
"Environment :: Console",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Healthcare Industry",
"Topic :: Scientific/Engineering",
"Framework :: IPython",
]
[tool.poetry.build]
generate-setup-file = false
[tool.poetry.dependencies]
python = ">=3.8,<3.11"
# Dependencies for EDA
bokeh = "^2"
dask = {version = ">=2022.3.0", extras = ["array", "dataframe", "delayed"]}
nltk = "^3.6.7"
numpy = "^1.21"
pandas = "^1.1"
pydot = "^1.4.2"
scipy = "^1.8"
wordcloud = "^1.8"
sqlalchemy = "1.3.24"
# Dependencies for Connector
aiohttp = "^3.6"
ipywidgets = "^7.5"
jinja2 = ">=3.0,<3.1"
jsonpath-ng = "^1.5"
pydantic = "^1.6"
tqdm = "^4.48"
# Dependencies for Clean
flask = "^2"
flask_cors = "^3.0.10"
metaphone = "^0.6"
python-stdnum = "^1.16"
regex = "^2021.8.3"
varname = "^0.8.1"
python-crfsuite = "0.9.8"
rapidfuzz = "^2.1.2"
[tool.poetry.dev-dependencies]
black = "^22.3.0"
codecov = "^2"
docopt = "^0.6"
gitpython = "^3"
ipykernel = "^6"
ipython = "^7"
nbsphinx = "^0.8"
pylint = "^2"
pyright = "^0.0.13"
pytest = "^6"
pytest-cov = "^3"
rope = "^0.16"
rstcheck = "^3"
seaborn = "^0.11"
sphinx = "^4"
sphinx-autobuild = "^2021"
sphinx-autodoc-typehints = "^1"
toml = "^0.10"
ray = "^1.13.0"
[tool.black]
exclude = '''
(
/(
\.eggs
| \.git
| \.pytype
| \.pytest_cache
| build
| dist
)/
)
'''
line-length = 100
target-version = ['py38']
[build-system]
build-backend = "poetry.masonry.api"
requires = ["poetry>=1"]