-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
51 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Check this file before committing a new version: | ||
# http://lint.travis-ci.org/ | ||
|
||
language: python | ||
|
||
python: | ||
- "2.7" | ||
|
||
before_install: | ||
- uname -a | ||
- free -m | ||
- df -h | ||
- ulimit -a | ||
- python -V | ||
|
||
virtualenv: | ||
system_site_packages: true | ||
|
||
# command to install dependencies | ||
install: | ||
- sudo apt-get update -qq | ||
- if [[ $TRAVIS_PYTHON_VERSION == "2.7" ]]; then sudo apt-get install python-matplotlib python-scipy; fi | ||
- pip install -r pip-requirements.txt | ||
|
||
# run tests | ||
script: | ||
- ./run-tests |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--index-url https://pypi.python.org/simple/ | ||
|
||
pep8 | ||
nose | ||
-e . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,11 +16,9 @@ | |
# along with postpic. If not, see <http://www.gnu.org/licenses/>. | ||
# | ||
from setuptools import setup | ||
from postpic import __version__ | ||
|
||
|
||
setup(name='postpic', | ||
version=__version__, | ||
version='0.0.0', | ||
author='Stephan Kuschel', | ||
author_email='[email protected]', | ||
description='The open source particle-in-cell post processor.', | ||
|