forked from GatorGlaciology/GStatSim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (32 loc) · 938 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
26
27
28
29
30
31
32
33
34
35
36
37
from setuptools import setup
version = '1.0.5'
classifiers = [
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering :: Information Analysis',
]
dependencies = [
'numpy>=1.14.5',
'pandas>=1.1.1',
'scipy>=1.1.1',
'tqdm>=3',
'scikit-learn>=1.1.2',
]
with open('README.md', 'r') as f:
readme = f.read()
setup(
name = 'gstatsim',
version = version,
description = 'Geostatistics tools for interpolation and simulation.',
long_description = readme,
long_description_content_type = 'text/markdown',
author = '(Emma) Mickey MacKie',
author_email = '[email protected]',
url = 'https://github.com/GatorGlaciology/GStatSim',
license = 'MIT',
classifiers = classifiers,
py_modules = ['gstatsim'],
python_requires = '>=3',
install_requires = dependencies,
)