Skip to content

Commit

Permalink
Merge pull request #78 from lsetiawan/prepare_release
Browse files Browse the repository at this point in the history
Prepare release
  • Loading branch information
lsetiawan authored Jan 31, 2018
2 parents 5be3391 + 86a83eb commit 91ba7c8
Show file tree
Hide file tree
Showing 10 changed files with 2,398 additions and 9 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
odm2rest/_version.py export-subst
4 changes: 1 addition & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,8 @@ before_install:
- conda config --set show_channel_urls true
- conda config --add channels conda-forge --force
- conda config --add channels odm2 --force
- conda create --yes -n TEST python=$TRAVIS_PYTHON_VERSION --file requirements.txt
- conda create --yes -n TEST python=$TRAVIS_PYTHON_VERSION --file requirements.txt --file requirements-dev.txt
- source activate TEST
# Coding standards.
- conda install --channel conda-forge --yes flake8-print flake8-quotes flake8-import-order flake8-builtins flake8-comprehensions flake8-mutable

# Test source distribution.
install:
Expand Down
5 changes: 5 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
include LICENSE
include README.md
include *.txt

recursive-include odm2rest/static *
recursive-include odm2rest/templates *
recursive-include odm2rest/swagger *
recursive-include odm2rest/schemas *

include versioneer.py
include odm2rest/_version.py
6 changes: 5 additions & 1 deletion odm2rest/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
API_VERSION = 'v1'
API_VERSION = 'v1'

from ._version import get_versions
__version__ = get_versions()['version']
del get_versions
Loading

0 comments on commit 91ba7c8

Please sign in to comment.