-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (43 loc) · 1.28 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
'''Eurus
'''
import os
from distutils.core import setup
from setuptools import find_packages
import numpy as np
CLASSIFIERS = [
'Development Status :: 3 - Alpha',
'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 fp:
LONG_DESCRIPTION = ''.join(fp.readlines())
setup(
name = 'eurus',
# version = '0.1.1',
packages = find_packages(),
install_requires = ['numpy>=1.7',
'scipy>=0.13',
],
author = 'Shaun Hadden',
author_email = '[email protected]',
description = 'Eurus',
long_description = LONG_DESCRIPTION,
license = 'MIT',
keywords = 'full-waveform inversion',
# url = '',
download_url = 'http://github.com/ShaunHadden/eurus',
classifiers = CLASSIFIERS,
platforms = ['Windows', 'Linux', 'Solaris', 'Mac OS-X', 'Unix'],
use_2to3 = False,
include_dirs=[np.get_include()],
)