forked from faizanahemad/data-science-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
19 lines (18 loc) · 783 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from setuptools import find_packages, setup
setup(name='data_science_utils',
version='0.2.54',
description='Utils for use in python with pandas and numpy',
url='https://github.com/faizanahemad/data-science-utils',
author='Faizan Ahemad',
author_email='fahemad3@gmail.com',
license='MIT',
install_requires=[
'numpy','pandas','beautifulsoup4','fastnumbers','more-itertools',
'dill','stockstats','pytidylib','seaborn','gensim','nltk','fastnumbers',
'joblib','Pygments','opencv-python',
],
keywords=['Pandas','numpy','data-science','IPython', 'Jupyter','ML','Machine Learning'],
packages=find_packages(),
test_suite='nose.collector',
tests_require=['nose'],
zip_safe=False)