-
Notifications
You must be signed in to change notification settings - Fork 34
/
setup.py
32 lines (27 loc) · 880 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
from setuptools import setup, find_packages
with open('README.md') as readme_file:
README = readme_file.read()
setup_args = dict(
name='autoplotter',
version='0.1.0',
description='Web based application for GUI Based EDA',
long_description_content_type="text/markdown",
long_description=README,
license='MIT',
packages=find_packages(),
author='Saurabh Verma',
author_email='[email protected]',
keywords=['EDA', 'Python', 'Plotly','Gui EDA','autoplotter'],
url='https://github.com/ersaurabhverma/autoplotter',
download_url='https://pypi.org/project/autoplotter/'
)
install_requires = [
'dash',
'dash_bootstrap_components',
'pandas',
'dash_table',
'numpy',
'jupyter-dash'
]
if __name__ == '__main__':
setup(**setup_args, install_requires=install_requires)