-
Notifications
You must be signed in to change notification settings - Fork 42
/
setup.py
54 lines (51 loc) · 1.74 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
""" SeismiPro is a library for seismic data processing. """
from setuptools import setup, find_packages
import re
with open('seismicpro/__init__.py', 'r') as f:
version = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]', f.read(), re.MULTILINE).group(1)
setup(
name='SeismicPro',
packages=find_packages(exclude=['tutorials', 'docker_containers', 'datasets', 'models']),
version=version,
url='https://github.com/gazprom-neft/SeismicPro',
license='CC BY-NC-SA 4.0',
author='Gazprom Neft DS team',
author_email='[email protected]',
description='A framework for seismic data processing',
long_description='',
zip_safe=False,
platforms='any',
install_requires=[
'numpy>=1.16.0',
'scipy==1.3.3',
'pandas>=0.24.0',
'scikit-learn==0.21.3',
'PyWavelets>=1.0.1',
'matplotlib>=3.0.2',
'dill>=0.2.7.1',
'tdigest>=0.5.2.2',
'tqdm==4.30.0',
'segyio==1.8.3',
'scikit-image>=0.13.1',
'numba>=0.35.0'
],
extras_require={
'tensorflow': ['tensorflow>=1.12'],
'tensorflow-gpu': ['tensorflow-gpu>=1.12'],
'keras': ['keras>=2.0.0'],
'torch': ['torch>=1.0.0'],
'hmmlearn': ['hmmlearn==0.2.0'],
},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering',
],
)