forked from sfu-db/dataprep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
111 lines (98 loc) · 2.49 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]
name = "dataprep"
version = "0.2.14"
description = "Dataprep: Data Preparation in Python"
authors = ["SFU Database System Lab <[email protected]>"]
maintainers = [
"Weiyuan Wu <[email protected]>",
"Jinglin Peng <[email protected]>",
"Pei Wang <[email protected]>",
"Brandon Lockhart <[email protected]>",
"Song Bian <[email protected]>"
]
license = "MIT"
readme = "README.md" # Markdown files are supported
repository = "https://github.com/sfu-db/dataprep"
homepage = "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.dependencies]
python = "^3.6.1"
# Dependencies for EDA
dask = { version = "~2.25", extras = [ "array", "dataframe", "delayed" ]}
pandas = "~1.0"
numpy = "~1.19"
scipy = "~1.5"
bokeh = "~2.0"
nltk = "^3.5"
wordcloud = "~1.8"
pillow = "~7.2"
bottleneck = "^1.3.2"
# Dependencies for Connector
requests = "~2.24"
jinja2 = "~2.11"
tqdm = "~4.48"
tornado = "5.0.2"
jsonpath-ng = "~1.5"
aiohttp = "~3.6"
pydantic = "^1.6.1"
ipywidgets = "^7.5.1"
# Dependencies for Clean
regex = "~2020.10.15"
[tool.poetry.dev-dependencies]
pylint = "~2.4"
pytest = "~5.4"
mypy = "~0.770"
black = "^20.8b1"
nbsphinx = "~0.7"
sphinx = "^3"
toml = "^0.10.0"
rstcheck = "^3.3.1"
sphinx-autobuild = "^0.7.1"
pytest-cov = "~2.10"
codecov = "~2.1"
sphinx-autodoc-typehints = "~1.10"
ipython = "~7.13"
rope = "^0.16.0"
seaborn = "^0.10.1"
gitpython = "~3.1"
ipykernel = "^5.3.4"
docopt = "^0.6.2"
python-semantic-release = "^7.3.0"
[tool.black]
line-length = 100
target-version = ['py36', 'py37']
exclude = '''
(
/(
\.eggs
| \.git
| \.pytype
| \.pytest_cache
| build
| dist
)/
)
'''
[tool.semantic_release]
version_variable = "dataprep/__init__.py:__version__"
version_source = "tag"
commit_subject = "v{version}"
commit_message = "Bump to v{version}"
commit_author = "Weiyuan Wu <[email protected]>"
branch = "master"
commit_version_number = true
[build-system]
requires = ["poetry>=1"]
build-backend = "poetry.masonry.api"