11[tool .poetry ]
2- name = " dataprep"
3- version = " 0.3.0"
4- description = " Dataprep: Data Preparation in Python"
52authors = [
" SFU Database System Lab <[email protected] >" ]
3+ description = " Dataprep: Data Preparation in Python"
64maintainers = [
7- 8- " Jinglin Peng <[email protected] >" ,
9- 10- " Brandon Lockhart <[email protected] >" ,
11- 5+ 6+ " Jinglin Peng <[email protected] >" ,
7+ 8+ " Brandon Lockhart <[email protected] >" ,
9+ 1210]
11+ name = " dataprep"
12+ version = " 0.3.0"
1313
1414license = " MIT"
1515
16- readme = " README.md" # Markdown files are supported
16+ readme = " README.md" # Markdown files are supported
1717
18- repository = " https://github.com/sfu-db/dataprep"
1918homepage = " https://github.com/sfu-db/dataprep"
19+ repository = " https://github.com/sfu-db/dataprep"
2020
2121keywords = [" dataprep" , " eda" , " connector" , " data science" , " exploratory data analysis" , " data exploration" ]
2222
2323classifiers = [
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" ,
3434]
3535
3636[tool .poetry .dependencies ]
3737python = " ^3.6.1"
3838
3939# Dependencies for EDA
40- dask = { version = " ^2.25" , extras = [ " array" , " dataframe" , " delayed" ]}
41- pandas = " ^1.1"
42- numpy = " ^1"
43- scipy = " ^1"
4440bokeh = " ^2"
41+ bottleneck = " ^1.3"
42+ dask = {version = " ^2.25" , extras = [" array" , " dataframe" , " delayed" ]}
4543nltk = " ^3.5"
44+ numpy = " ^1"
45+ pandas = " ^1.1"
46+ scipy = " ^1"
4647wordcloud = " ^1.8"
47- bottleneck = " ^1.3"
4848
4949# Dependencies for Connector
50+ aiohttp = " ^3.6"
51+ ipywidgets = " ^7.5"
5052jinja2 = " ^2.11"
51- tqdm = " ^4.48"
5253jsonpath-ng = " ^1.5"
53- aiohttp = " ^3.6"
5454pydantic = " ^1.6"
55- ipywidgets = " ^7.5 "
55+ tqdm = " ^4.48 "
5656
5757# Dependencies for Clean
58- regex = " ^2020.10.15"
59- usaddress = " ^0.5.10"
6058levenshtein = " ^0.12.0"
6159metaphone = " ^0.6"
62- varname = " ^0.8.1"
6360python-stdnum = " ^1.16"
61+ regex = " ^2020.10.15"
62+ usaddress = " ^0.5.10"
63+ varname = " ^0.8.1"
6464
6565[tool .poetry .dev-dependencies ]
66- pylint = " ^2.4"
67- pytest = " ^5.4"
68- mypy = " ^0.770"
6966black = " ^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"
7667codecov = " ^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"
8169gitpython = " ^3.1"
8270ipykernel = " ^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"
8477python-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"
8585
8686[tool .black ]
87- line-length = 100
88- target-version = [' py36' , ' py37' ]
8987exclude = '''
9088(
9189 /(
@@ -98,16 +96,18 @@ exclude = '''
9896 )/
9997)
10098'''
99+ line-length = 100
100+ target-version = [' py36' , ' py37' ]
101101
102102[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 <[email protected] >" 108103branch = " master"
104+ commit_author =
" Weiyuan Wu <[email protected] >" 105+ commit_message = " Bump to v{version}"
106+ commit_subject = " v{version}"
109107commit_version_number = true
108+ version_source = " tag"
109+ version_variable = " dataprep/__init__.py:__version__"
110110
111111[build-system ]
112- requires = [" poetry>=1" ]
113112build-backend = " poetry.masonry.api"
113+ requires = [" poetry>=1" ]
0 commit comments