-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
49 lines (46 loc) · 1.01 KB
/
setup.py
File metadata and controls
49 lines (46 loc) · 1.01 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
from setuptools import setup, find_packages
# setup.py is kept for backward compatibility
# All configuration has been moved to pyproject.toml
requirements = [
"ipykernel",
"pyarrow",
"pandas",
"dask",
"numba",
"aiohttp",
"requests",
"decorator",
"lxml",
"html5lib",
"beautifulsoup4",
"cartopy",
"geopandas",
"holoviews",
"hvplot",
"matplotlib",
"bokeh",
"geoviews",
"spatialpandas",
"panel"
]
setup(
name='cdec-maps',
# Let setuptools_scm handle versioning
use_scm_version=True,
description="CDEC Maps and Dashboards",
license="MIT",
author="Nicky Sandhu",
author_email='psandhu@water.ca.gov',
url='https://github.com/dwr-psandhu/cdec-maps',
packages=find_packages(),
entry_points={
'console_scripts': [
'cdec_maps=cdec_maps.cli:cli'
]
},
install_requires=requirements,
keywords='cdec-maps',
classifiers=[
'Programming Language :: Python :: 3.10'
]
)