forked from CIERA-Northwestern/press-dash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (33 loc) · 1.13 KB
/
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
34
35
'''This is the install script used by pip to install the package,
i.e. enable your Python version to find and import the package.
Setup can accept a wide variety of options, but for the purpose
of installing via "pip install -e .", the only required options
are the name of the package and the packages to be included (`install_requires`).
**If you plan on running your dashboard on streamlit.io/cloud,
you must also include the necessary packages in the `requirements.txt` file.**
'''
import setuptools
setuptools.setup(
name="press_dash_lib",
version="0.1",
author="CIERA (Zach Hafen-Saavedra)",
author_email="[email protected]",
description="Dashboard for exploring and presenting press data related to CIERA.",
long_description_content_type="text/markdown",
url="https://github.com/CIERA-Northwestern/press-dash",
packages=setuptools.find_packages(),
install_requires = [
'numpy',
'pandas',
'openpyxl',
'matplotlib',
'seaborn',
'nbconvert',
'nbformat',
'PyYAML',
'streamlit',
'pytest',
'jupyterlab',
'root-dash',
],
)