Skip to content

Commit

Permalink
installation: entry points addition
Browse files Browse the repository at this point in the history
* Adds entry point for Invenio-Base to discover package.

Signed-off-by: Lars Holm Nielsen <lars.holm.nielsen@cern.ch>
  • Loading branch information
lnielsen committed Oct 24, 2015
1 parent 96075ef commit fd40765
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 49 deletions.
10 changes: 10 additions & 0 deletions .travis.yml
Expand Up @@ -60,3 +60,13 @@ script:

after_success:
- coveralls

deploy:
provider: pypi
user: lnielsen
password:
secure: bq7e+gGhAXaKBnXfsbJfZw4TNbCY7ZgS6aUn5WSGWdLTFrJoDyCVUiMYxfk4VaEsEk6M0oVyETKN2bKtWLzKcBEkK/8wIDLFFg2+hXAS84Wh4Sjp/DqEhAJTm5TfQrQuEman1bJMsu5TrG4RtUA8eDxzq2vGzqdp5PNV4BOWup/BClrnuJec22WcfZ3tMSuhKRq3QCFqCWRMZfBfMiVHhf0XYs8L8t+epJnpVdVvwJOud3VlmNI0UFHsHIT/Rgp3NLxVO6oXLT+PjOadKWq75NO/rsPyPbQ9Ys1zeSyO8Of91VpG4cXD2fWnmul0L3PmR6ozaae+5SNGXJQ7AAtuF2byQHwkiNKEfIdrsPrAhOPw6dZCHyEmDVUjp7TaLD9N2rGrjid7Hhr8PdItrQa3hV3kh6+zzz09qQnGrhHxYsx+kRS0xHGSCjXhbC5/ZkhEtC78dr1ykpbGkb/kQdG+ZQIVdyRcPeuwzaRS3kF00Pb0Jn9Z2E649jBNUtgzx5g9ghzFAHcwVjGlwijFBQJ67noZqg+8kYYO+PqI2/7bBFmUk6+Fq7oaziV5rr8K+0Z31z4ZalCqeSHe1/nfgqzubLDHZO3ZCvL0S65C4xfBnHcR7mYIIpMiLh6hFQCUh4s1oWPRdGi4xbRA2EHN1ikIXXwmdXDVwTBVlE9RPVjg46A=
distributions: "sdist bdist_wheel"
on:
tags: true
python: "2.7"
23 changes: 0 additions & 23 deletions misc/header.py

This file was deleted.

22 changes: 0 additions & 22 deletions misc/header.rst

This file was deleted.

11 changes: 7 additions & 4 deletions setup.py
Expand Up @@ -37,7 +37,7 @@
'check-manifest>=0.25',
'coverage>=4.0',
'isort>=4.2.2',
'pep257>=0.6.0',
'pep257>=0.7.0',
'pytest-cache>=1.0',
'pytest-cov>=1.8.0',
'pytest-pep8>=1.0.6',
Expand All @@ -46,7 +46,7 @@

extras_require = {
'docs': [
"Sphinx>=1.3",
'Sphinx>=1.3',
],
'tests': tests_require,
}
Expand Down Expand Up @@ -121,8 +121,11 @@ def run_tests(self):
include_package_data=True,
platforms='any',
entry_points={
"invenio_i18n.translations": [
"messages = invenio_i18n"
'invenio_base.apps': [
'invenio_i18n = invenio_i18n:InvenioI18N',
],
'invenio_i18n.translations': [
'messages = invenio_i18n'
],
},
extras_require=extras_require,
Expand Down

0 comments on commit fd40765

Please sign in to comment.