-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (24 loc) · 702 Bytes
/
setup.py
File metadata and controls
31 lines (24 loc) · 702 Bytes
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
from setuptools import setup, find_packages
setup(
name='Kerwin_RA',
version='1.0',
packages=find_packages(),
install_requires=[
'pandas',
'geopandas',
'pyreadr',
'matplotlib',
'shapely.geometry',
'mpl_toolkits.mplot3d',
'mpl_toolkits.mplot3d.art3d',
'numpy',
'matplotlib.animation',
'IPython.display'
],
author='Jiangquan Dai',
author_email='m15914863239@163.com',
url='https://github.com/junlingm/EpiVisPy',
description='A package to generate a 3D animation over a 2D map.',
license='MIT',
keywords="animation geospatial",
)