-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
25 lines (21 loc) · 832 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
# def readme():
# with open('README.rst') as f:
# return f.read()
setup(name='geoml',
version='0.3.4',
description='Machine learning for spatial data',
# long_description=readme(),
keywords=['machine learning', 'spatial data', 'gaussian process'],
url='http://github.com/italo-goncalves/geoML',
author='Ítalo Gomes Gonçalves',
author_email='[email protected]',
license='GPL3',
packages=['geoml'],
package_dir={'geoml': 'src/geoml'},
package_data={'geoml': ['sample_data/*.dat']},
include_package_data=True,
zip_safe=False,
install_requires=['scikit-image', 'pandas', 'numpy', 'pyvista',
'tensorflow', 'tensorflow-probability',
'scipy'])