2023-12-07 17:51:36 +01:00
|
|
|
from setuptools import setup
|
2022-11-30 16:42:25 +01:00
|
|
|
|
2023-12-07 17:51:36 +01:00
|
|
|
setup(
|
2022-11-30 16:42:25 +01:00
|
|
|
name="grassloper",
|
2023-12-07 17:51:36 +01:00
|
|
|
description="a tool to estimate the slope of a granular surface",
|
|
|
|
version="1.1",
|
|
|
|
author='Guillaume Raffy',
|
|
|
|
author_email='guillaume.raffy@univ-rennes.fr',
|
2022-11-30 16:42:25 +01:00
|
|
|
packages=['grassloper'],
|
|
|
|
install_requires=['improtools(>=1.0)', 'numpy', 'opencv-python', 'scipy', 'h5py'],
|
|
|
|
entry_points={
|
|
|
|
'console_scripts': ['grassloper=grassloper.main:main', ]
|
|
|
|
},
|
|
|
|
)
|