forked from agu3rra/volpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (22 loc) · 806 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
from setuptools import setup, find_packages
setup(
name='volpy',
version='19.8.1',
packages=find_packages(),
install_requires=['numpy==1.17.0',
'scipy==1.3.1',
'pandas==0.25.0',
'utm==0.5.0',
'sympy==1.4',
'plotly==4.1.0',],
package_data={
'volpy': ['sample_data/survey_ibema_faxinal_Cartesian.csv', ],
},
author='Andre Guerra',
author_email='[email protected]',
description='volpy: Volume calculations in Python',
long_description='Calculate volumes out of a Digital Elevation Model (DEM) represented by Triangulated Irregular Network',
url='https://github.com/agu3rra/volpy/',
license='GPL',
keywords='gps volume terrain survey'
)