Revision 3318c8f220f557d3f6603df28b2b4db3ead7ecda authored by Daniel Himmelstein on 19 November 2018, 18:20:07 UTC, committed by GitHub on 19 November 2018, 18:20:07 UTC
Merges https://github.com/greenelab/manubot/pull/79
Closes https://github.com/greenelab/manubot/issues/14

Retrieves ISBN metadata using Citoid.
Metadata via isbnlib implemented but not used by default.

ISBN-10 identifiers are converted to ISBN-13 as part of
citation standardization.
1 parent afa55f8
Raw File
.travis.yml
dist: trusty
sudo: true
language: python
python:
  - "3.6"
cache:
  - pip
before_install:
  - wget --quiet https://github.com/jgm/pandoc/releases/download/2.3.1/pandoc-2.3.1-1-amd64.deb
  - sudo dpkg --install pandoc-2.3.1-1-amd64.deb
install:
  - pip install .
  - python setup.py sdist bdist_wheel
script: py.test
deploy:
  provider: pypi
  user: dhimmel
  password:
    secure: E3bvTC2qidIVwwHPxLo6PHUU494Rh97ZmtiOSeANmAMQDRM21x3HrMF2Wu7DzSPmel8Vw3Fh3TEim6QN8ngJXAWNmGOlKEt4JC6siA3NfPpENxkp+GHtD6+VhCSY+PEAwyAlpFzLa8oHXQtJSJ3+ieO0UBAGdGVolbieDOSlMyhGdQOau/WhjMxYlkSY97Sbp/1iugGZe47VMoo78PmOj/tU2x/hubCslhQP3V5HTOsEhYc97FqMCd/jwpjKKXwJU6D62o7eperQjmKc9ghBl2GQAiH44iF+Rvdyxm2N8z4rtSRrhAyfk40o/uLXNw9+Wt2Q9mkFXQLMUMmHcb9I+oEG8pBi/VhuW8Ee2dyjtHEs1Ycdx4fitd29lXpl+GqnwDlCU9pEg6t//E4sgaVTh/KCB/r5b33FxRPQXHN7UGWdwKlPCpO4qIH7yQmvN2Ow8AJJYQbr2UFJrAUie4OZAhB+2SXn10BaXqjOuuILmUktE5bhwuKw52tKLu9mglBL3644qj9dkRwoIQyi/RX/WjrFUW4ilPHqajfiwTmHFYyzqxrwpxUgA9uox6yZAq4bYr810kqJEjmCfu7ZOSl6aEcD6YCyzGEDJeqwTyXlMQabPeaZwQXFgioOwqYm2TQh2woFsukg7Bztqg+XHxowQqdGw279O+vb0uq7RfAe850=
  on:
    python: '3.6'
    repo: greenelab/manubot
    tags: true
  distributions: sdist bdist_wheel
back to top