-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (44 loc) · 1.54 KB
/
setup.py
File metadata and controls
47 lines (44 loc) · 1.54 KB
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
""" odpy contains generic python tools for OpendTect. """
from setuptools import setup, find_packages
import re
with open('odpy/__init__.py', 'r') as f:
version = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]', f.read(), re.MULTILINE).group(1)
setup(
name='odpy',
packages=find_packages(exclude=[]),
version=version,
url='https://github.com/OpendTect/odpy',
license='Apache 2.0',
author='dGB Earth Sciences',
author_email='info@dgbes.com',
description='Generic tools for access to OpendTect sofware and database',
long_description='',
zip_safe=False,
platforms='any',
install_requires=[
'h5py>=2.10.0',
'numba>=0.53.1',
'numpy>=1.19.2',
'psutil>=5.7.0',
],
extras_require={
'humanfriendly': ['humanfriendly>=9.2.0'],
'matplotlib': ['matplotlib>=3.0.0'],
'odbind': ['odbind>=1.0.0'],
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Intended Audience :: Information Technology',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Scientific/Engineering',
],
)