-
Notifications
You must be signed in to change notification settings - Fork 23
/
setup.py
50 lines (47 loc) · 1.45 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/usr/bin/env python
"""
Created on Sep 8th 2018
"""
from distutils.core import setup
from setuptools import find_packages
import versioneer
CLASSIFIERS = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Scientific/Engineering :: Physics',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS',
'Natural Language :: English',
]
with open("README.md") as f:
LONG_DESCRIPTION = ''.join(f.readlines())
setup(
name="pyGeoStatistics",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
install_requires=[
'scipy',
'pandas',
'numba',
'matplotlib'
],
packages=find_packages(exclude=['tests', 'testData']),
author="Yu Hao",
author_email="[email protected]",
description="pyGeoStatistics: Geostatistics with Python",
long_description=LONG_DESCRIPTION,
license="MIT",
keywords="geostatistics",
url="https://github.com/whimian/pyGeoStatistics",
download_url="https://github.com/whimian/pyGeoStatistics",
classifiers=CLASSIFIERS,
platforms=["Windows", "Linux", "Solaris", "Mac OS-X", "Unix"],
zip_safe=False
)