forked from ResidentMario/missingno
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
18 lines (18 loc) · 812 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from setuptools import setup
setup(
name='missingno',
license='MIT License',
packages=['missingno'], # this must be the same as the name above
install_requires=['numpy', 'matplotlib', 'scipy', 'seaborn'],
extras_require={'tests': ['pytest', 'pytest-mpl']},
py_modules=['missingno'],
version='0.4.2', # note to self: also update the one is the source!
description='Missing data visualization module for Python.',
author='Aleksey Bilogur',
author_email='[email protected]',
url='https://github.com/ResidentMario/missingno',
download_url='https://github.com/ResidentMario/missingno/tarball/0.4.2',
keywords=['data', 'data visualization', 'data analysis', 'missing data', 'data science', 'pandas', 'python',
'jupyter'],
classifiers=[]
)