-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
22 lines (20 loc) · 811 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
import setuptools
setuptools.setup(
name='data_inspector',
version='0.0.8',
author="Kazi Amit Hasan",
author_email="[email protected]",
description="This module brings different functions to make EDA, data cleaning easier.",
long_description=open('README.md').read() + '\n\n' + open('CHANGELOG.txt').read(),
License='MIT',
long_description_content_type="text/markdown",
url="https://github.com/AmitHasanShuvo/data-inspector",
keywords='eda',
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=['pandas==1.1.2','matplotlib==3.1.2','numpy==1.18.5', 'seaborn==0.11.1','scipy==1.6.2']
)