1
1
[tool .poetry ]
2
- name = " dataprep"
3
- version = " 0.3.0"
4
- description = " Dataprep: Data Preparation in Python"
5
2
authors = [" SFU Database System Lab <dsl.cs.sfu@gmail.com>" ]
3
+ description = " Dataprep: Data Preparation in Python"
6
4
maintainers = [
7
- " Weiyuan Wu <youngw@sfu.com>" ,
8
- " Jinglin Peng <jinglin_peng@sfu.ca>" ,
9
- " Pei Wang <peiw@sfu.ca>" ,
10
- " Brandon Lockhart <brandon_lockhart@sfu.ca>" ,
11
- " Song Bian <biansonghz@gmail.com>"
5
+ " Weiyuan Wu <youngw@sfu.com>" ,
6
+ " Jinglin Peng <jinglin_peng@sfu.ca>" ,
7
+ " Pei Wang <peiw@sfu.ca>" ,
8
+ " Brandon Lockhart <brandon_lockhart@sfu.ca>" ,
9
+ " Song Bian <biansonghz@gmail.com>" ,
12
10
]
11
+ name = " dataprep"
12
+ version = " 0.3.0"
13
13
14
14
license = " MIT"
15
15
16
- readme = " README.md" # Markdown files are supported
16
+ readme = " README.md" # Markdown files are supported
17
17
18
- repository = " https://github.com/sfu-db/dataprep"
19
18
homepage = " https://github.com/sfu-db/dataprep"
19
+ repository = " https://github.com/sfu-db/dataprep"
20
20
21
21
keywords = [" dataprep" , " eda" , " connector" , " data science" , " exploratory data analysis" , " data exploration" ]
22
22
23
23
classifiers = [
24
- " Development Status :: 4 - Beta" ,
25
- " Topic :: Software Development :: Build Tools" ,
26
- " Environment :: Console" ,
27
- " Operating System :: OS Independent" ,
28
- " Intended Audience :: Science/Research" ,
29
- " Intended Audience :: Developers" ,
30
- " Intended Audience :: Financial and Insurance Industry" ,
31
- " Intended Audience :: Healthcare Industry" ,
32
- " Topic :: Scientific/Engineering" ,
33
- " Framework :: IPython" ,
24
+ " Development Status :: 4 - Beta" ,
25
+ " Topic :: Software Development :: Build Tools" ,
26
+ " Environment :: Console" ,
27
+ " Operating System :: OS Independent" ,
28
+ " Intended Audience :: Science/Research" ,
29
+ " Intended Audience :: Developers" ,
30
+ " Intended Audience :: Financial and Insurance Industry" ,
31
+ " Intended Audience :: Healthcare Industry" ,
32
+ " Topic :: Scientific/Engineering" ,
33
+ " Framework :: IPython" ,
34
34
]
35
35
36
36
[tool .poetry .dependencies ]
37
37
python = " ^3.6.1"
38
38
39
39
# Dependencies for EDA
40
- dask = { version = " ^2.25" , extras = [ " array" , " dataframe" , " delayed" ]}
41
- pandas = " ^1.1"
42
- numpy = " ^1"
43
- scipy = " ^1"
44
40
bokeh = " ^2"
41
+ bottleneck = " ^1.3"
42
+ dask = {version = " ^2.25" , extras = [" array" , " dataframe" , " delayed" ]}
45
43
nltk = " ^3.5"
44
+ numpy = " ^1"
45
+ pandas = " ^1.1"
46
+ scipy = " ^1"
46
47
wordcloud = " ^1.8"
47
- bottleneck = " ^1.3"
48
48
49
49
# Dependencies for Connector
50
+ aiohttp = " ^3.6"
51
+ ipywidgets = " ^7.5"
50
52
jinja2 = " ^2.11"
51
- tqdm = " ^4.48"
52
53
jsonpath-ng = " ^1.5"
53
- aiohttp = " ^3.6"
54
54
pydantic = " ^1.6"
55
- ipywidgets = " ^7.5 "
55
+ tqdm = " ^4.48 "
56
56
57
57
# Dependencies for Clean
58
- regex = " ^2020.10.15"
59
- usaddress = " ^0.5.10"
60
58
levenshtein = " ^0.12.0"
61
59
metaphone = " ^0.6"
62
- varname = " ^0.8.1"
63
60
python-stdnum = " ^1.16"
61
+ regex = " ^2020.10.15"
62
+ usaddress = " ^0.5.10"
63
+ varname = " ^0.8.1"
64
64
65
65
[tool .poetry .dev-dependencies ]
66
- pylint = " ^2.4"
67
- pytest = " ^5.4"
68
- mypy = " ^0.770"
69
66
black = " ^20.8b1"
70
- nbsphinx = " ^0.7"
71
- sphinx = " ^3"
72
- toml = " ^0.10.0"
73
- rstcheck = " ^3.3.1"
74
- sphinx-autobuild = " ^0.7.1"
75
- pytest-cov = " ^2.10"
76
67
codecov = " ^2.1"
77
- sphinx-autodoc-typehints = " ^1.10"
78
- ipython = " ^7.13"
79
- rope = " ^0.16"
80
- seaborn = " ^0.10.1"
68
+ docopt = " ^0.6.2"
81
69
gitpython = " ^3.1"
82
70
ipykernel = " ^5.3"
83
- docopt = " ^0.6.2"
71
+ ipython = " ^7.13"
72
+ mypy = " ^0.770"
73
+ nbsphinx = " ^0.7"
74
+ pylint = " ^2.4"
75
+ pytest = " ^5.4"
76
+ pytest-cov = " ^2.10"
84
77
python-semantic-release = " ^7.3"
78
+ rope = " ^0.16"
79
+ rstcheck = " ^3.3.1"
80
+ seaborn = " ^0.10.1"
81
+ sphinx = " ^3"
82
+ sphinx-autobuild = " ^0.7.1"
83
+ sphinx-autodoc-typehints = " ^1.10"
84
+ toml = " ^0.10.0"
85
85
86
86
[tool .black ]
87
- line-length = 100
88
- target-version = [' py36' , ' py37' ]
89
87
exclude = '''
90
88
(
91
89
/(
@@ -98,16 +96,18 @@ exclude = '''
98
96
)/
99
97
)
100
98
'''
99
+ line-length = 100
100
+ target-version = [' py36' , ' py37' ]
101
101
102
102
[tool .semantic_release ]
103
- version_variable = " dataprep/__init__.py:__version__"
104
- version_source = " tag"
105
- commit_subject = " v{version}"
106
- commit_message = " Bump to v{version}"
107
- commit_author = " Weiyuan Wu <youngw@sfu.ca>"
108
103
branch = " master"
104
+ commit_author = " Weiyuan Wu <youngw@sfu.ca>"
105
+ commit_message = " Bump to v{version}"
106
+ commit_subject = " v{version}"
109
107
commit_version_number = true
108
+ version_source = " tag"
109
+ version_variable = " dataprep/__init__.py:__version__"
110
110
111
111
[build-system ]
112
- requires = [" poetry>=1" ]
113
112
build-backend = " poetry.masonry.api"
113
+ requires = [" poetry>=1" ]
0 commit comments