forked from 5agado/data-science-learning
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (32 loc) · 860 Bytes
/
setup.py
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
from setuptools import setup
setup(
name="data_science_learning",
version="0.1.1",
author="Alex Martinelli",
description="Utils library for Data-Science related projects",
license="Apache 2.0",
packages=['ds_utils', 'scripts'],
entry_points={
'console_scripts': ['convert-video=scripts.convert_video:main',
'video-mosaic=scripts.video_mosaic:main',
'image-montage=scripts.image_montage:main'],
},
install_requires=[
'numpy',
'requests',
'pandas',
'matplotlib',
'seaborn',
'imageio',
'opencv-python',
'scipy',
'tqdm',
'pyyaml',
'plotly',
'cufflinks',
'imageio-ffmpeg',
'pillow',
'ipywidgets'
'jupyter_contrib_nbextensions',
],
)