-
Notifications
You must be signed in to change notification settings - Fork 0
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
7 changed files
with
77 additions
and
51 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,16 @@ | ||
language: python | ||
python: | ||
- "2.7" | ||
- "3.3" | ||
- "3.4" | ||
- "3.5" | ||
# - "3.5-dev" # 3.5 development branch | ||
# command to install dependencies | ||
install: "pip install -r requirements.txt" | ||
# command to run tests | ||
script: nosetests | ||
# | ||
branches: | ||
only: | ||
- master | ||
- develop |
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 @@ | ||
include lamana/tests/controls_LT/*.csv |
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 @@ | ||
[![Build Status](https://travis-ci.org/par2/lamana-test.svg?branch=develop)](https://travis-ci.org/par2/lamana-test) |
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
Empty file.
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 |
---|---|---|
|
@@ -2,14 +2,16 @@ | |
|
||
setup( | ||
name='lamana', | ||
packages=['lamana'], # this must be the same as the name above | ||
version='0.4.6', ### edit | ||
version='0.4.7', ### edit | ||
description='An extensible Python package for Laminate Analysis.', | ||
author='P. Robinson II', | ||
author_email='[email protected]', | ||
url='https://github.com/par2/lamana', # use the URL to the github repo | ||
download_url='https://github.com/par2/lamana/tarball/0.4.6', | ||
url='https://github.com/par2/lamana', # use the URL to the github repo | ||
download_url='https://github.com/par2/lamana/tarball/0.4.7', | ||
packages=['lamana', 'lamana.models', 'lamana.utils', 'lamana.tests', | ||
'lamana.tests.controls_LT', 'lamana.models.tests'], | ||
keywords=['laminate analysis', 'visualization'], | ||
#install_requires=['matplotlib', 'pandas', 'numpy'], | ||
classifiers=[ | ||
'Framework :: IPython', | ||
'Intended Audience :: Science/Research', | ||
|
@@ -29,3 +31,5 @@ | |
# (004) Create package http://zetcode.com/articles/packageinpython/ | ||
# (005) Detailed package guide https://python-packaging-user-guide.readthedocs.org/en/latest/ | ||
# (006) Updated guide: twine, pip, wheel http://joebergantine.com/blog/2015/jul/17/releasing-package-pypi/ | ||
# (007) packages Python Cookbook, 3rd ed, p. 435 | ||
# (008) install_requires https://python-packaging-user-guide.readthedocs.org/en/latest/requirements/ |