Skip to content

Commit 530a13c

Browse files
committed
Complete merge of Eurus and Anemoi trees.
1 parent a627ce3 commit 530a13c

22 files changed

+74
-199
lines changed

.gitignore

+59-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,60 @@
1-
*.pyc
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[cod]
4+
5+
# C extensions
6+
*.so
7+
8+
# Distribution / packaging
9+
.Python
10+
env/
11+
build/
12+
develop-eggs/
13+
dist/
14+
downloads/
15+
eggs/
16+
.eggs/
17+
lib/
18+
lib64/
19+
parts/
20+
sdist/
21+
var/
22+
*.egg-info/
23+
.installed.cfg
24+
*.egg
25+
26+
# PyInstaller
27+
# Usually these files are written by a python script from a template
28+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
29+
*.manifest
30+
*.spec
31+
32+
# Installer logs
33+
pip-log.txt
34+
pip-delete-this-directory.txt
35+
36+
# Unit test / coverage reports
37+
htmlcov/
38+
.tox/
39+
.coverage
40+
.coverage.*
41+
.cache
42+
nosetests.xml
43+
coverage.xml
44+
*,cover
45+
46+
# Translations
47+
*.mo
48+
*.pot
49+
50+
# Django stuff:
51+
*.log
52+
53+
# Sphinx documentation
54+
docs/_build/
55+
56+
# PyBuilder
57+
target/
58+
59+
# IPython Notebooks
260
.ipynb_checkpoints
3-
*.swp
4-
*~
5-
build

.travis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ install:
2020

2121
# Run test
2222
script:
23-
- nosetests --with-cov --cov eurus --cov-config .coveragerc -v -s
23+
- nosetests --with-cov --cov anemoi --cov-config .coveragerc -v -s
2424

2525
# Calculate coverage
2626
after_success:
2727
- coveralls --config_file .coveragerc
2828

2929
notifications:
3030
email:
31-
3231
32+

LICENSE

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2015 Shaun Hadden and Brendan Smithyman
3+
Copyright (c) 2015 Brendan Smithyman
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal
@@ -19,3 +19,4 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1919
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2020
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2121
SOFTWARE.
22+

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
# Eurus project
1+
# anemoi
22

3-
[![MIT License](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/ShaunHadden/eurus/blob/master/LICENSE)
4-
[![Travis Status](https://travis-ci.org/ShaunHadden/eurus.svg?branch=master)](https://travis-ci.org/ShaunHadden/eurus)
5-
[![Coverage Status](https://coveralls.io/repos/ShaunHadden/eurus/badge.svg?branch=master&service=github)](https://coveralls.io/github/ShaunHadden/eurus?branch=master)
3+
[![MIT License](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/uwoseis/anemoi/blob/master/LICENSE)
4+
[![Travis Status](https://travis-ci.org/uwoseis/anemoi.svg?branch=master)](https://travis-ci.org/uwoseis/anemoi)
5+
[![Coverage Status](https://coveralls.io/repos/uwoseis/anemoi/badge.svg?branch=master&service=github)](https://coveralls.io/github/uwoseis/anemoi?branch=master)
66

7-
Eurus is an implementation of an anisotropic acoustic frequency-domain wave equation solver in Python.
7+
Forward modelling solvers for 2D frequency-domain wave equations
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

eurus/eurus.py anemoi/eurus.py

File renamed without changes.
File renamed without changes.

eurus/Tests/__init__.py

-12
This file was deleted.

eurus/__init__.py

-1
This file was deleted.

eurusgraft/.gitignore

-60
This file was deleted.

eurusgraft/.travis.yml

-32
This file was deleted.

eurusgraft/LICENSE

-22
This file was deleted.

eurusgraft/README.md

-7
This file was deleted.

eurusgraft/setup.py

-47
This file was deleted.

setup.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
'''Eurus
1+
'''Anemoi
22
'''
33

44
import os
@@ -26,20 +26,20 @@
2626
LONG_DESCRIPTION = ''.join(fp.readlines())
2727

2828
setup(
29-
name = 'eurus',
29+
name = 'anemoi',
3030
# version = '0.1.1',
3131
packages = find_packages(),
3232
install_requires = ['numpy>=1.7',
3333
'scipy>=0.13',
3434
],
35-
author = 'Shaun Hadden',
36-
author_email = '[email protected]',
37-
description = 'Eurus',
35+
author = 'Brendan Smithyman',
36+
author_email = '[email protected]',
37+
description = 'Anemoi',
3838
long_description = LONG_DESCRIPTION,
3939
license = 'MIT',
4040
keywords = 'full-waveform inversion',
4141
# url = '',
42-
download_url = 'https://github.com/ShaunHadden/eurus',
42+
download_url = 'https://github.com/uwoseis/anemoi',
4343
classifiers = CLASSIFIERS,
4444
platforms = ['Windows', 'Linux', 'Solaris', 'Mac OS-X', 'Unix'],
4545
use_2to3 = False,

0 commit comments

Comments
 (0)