-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathsetup.py
60 lines (57 loc) · 1.82 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
51
52
53
54
55
56
57
58
59
60
#!/usr/bin/env python
"""
Created on Nov 1st 2017
"""
from os import path
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',
]
FILE_DIR = path.abspath(path.dirname(__file__))
with open(path.join(FILE_DIR, 'README.md')) as f:
LONG_DESCRIPTION = f.read()
setup(
name="pyGeoPressure",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
python_requires=">=2.7, <3.7",
install_requires=[
'future',
'pathlib2;python_version=="2.7"',
'singledispatch;python_version=="2.7"',
'scipy',
'scikit-learn',
'pandas',
'tables',
'matplotlib<3.0;python_version=="2.7"',
'matplotlib;python_version>"2.7"',
'segyio'
],
packages=find_packages(exclude=['test']),
author="Yu Hao",
author_email="yuhao@live.cn",
description="pyGeoPressure: Tools for geopressure prediction",
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
license="MIT",
keywords="pore pressure prediction",
url="https://github.com/whimian/pyGeoPressure",
download_url="https://github.com/whimian/pyGeoPressure",
classifiers=CLASSIFIERS,
platforms=["Windows", "Linux", "Solaris", "Mac OS-X", "Unix"],
zip_safe=False
)