forked from FIRO-Tethys/tethysdash_plugin_geoglows
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (25 loc) · 913 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
from setuptools import setup, find_packages
INSTALL_REQUIRES = ["intake >=0.6.6", "pandas", "numpy", "requests"]
setup(
name="tethysdash_plugin_geoglows",
version="0.0.1",
description="Geoglows visualization plugins for tethysdash",
url="https://github.com/FIRO-Tethys/tethysdash_plugin_usace",
maintainer="Yue Sun",
maintainer_email="[email protected]",
license="BSD",
py_modules=["tethysdash_plugin_geoglows"],
packages=find_packages(),
entry_points={
"intake.drivers": [
"geoglows_plots = geoglows_visualizations.plots:Plots",
"geoglows_map = geoglows_visualizations.map:Map",
]
},
package_data={"": ["*.csv", "*.yml", "*.html"]},
include_package_data=True,
install_requires=INSTALL_REQUIRES,
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
zip_safe=False,
)