-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* NEW Makes use of pipenv. * BETTER Adapts deployment scripts. * NEW Adds an homepage. Signed-off-by: Peter Weber <[email protected]>
- Loading branch information
Showing
26 changed files
with
2,096 additions
and
107 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 |
---|---|---|
@@ -1,5 +1,6 @@ | ||
.git | ||
*.gitignore | ||
.env | ||
|
||
*.mo | ||
*.pyc | ||
|
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 |
---|---|---|
|
@@ -63,3 +63,9 @@ target/ | |
|
||
# Vim swapfiles | ||
.*.sw? | ||
|
||
# Celery Beat | ||
celerybeat-schedule | ||
|
||
# Environment variables | ||
.env |
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
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,44 @@ | ||
[[source]] | ||
url = "https://pypi.org/simple" | ||
verify_ssl = true | ||
name = "pypi" | ||
|
||
[packages] | ||
Babel = ">=2.4.0" | ||
dojson = ">=1.3.2" | ||
Flask-BabelEx = ">=0.9.3" | ||
invenio = {version = "~=3.0.0",extras = ["base", "metadata", "postgresql", "auth", "elasticsearch6" ]} | ||
isbnlib = ">=3.9.1" | ||
PyYAML = ">=3.13" | ||
rero-ebooks = {editable = true,path = "."} | ||
uwsgi = ">=2.0" | ||
invenio-oaiharvester = {ref = "v1.0.0a4",git = "https://github.com/inveniosoftware/invenio-oaiharvester.git"} | ||
invenio-oaiserver = "*" | ||
pipenv = "*" | ||
requests = ">=2.20.0" | ||
|
||
[dev-packages] | ||
Sphinx = ">=1.5.1" | ||
check-manifest = ">=0.35" | ||
isort = ">=4.3.5,<4.3.10" | ||
mock = ">=2.0.0" | ||
pydocstyle = ">=2.0.0" | ||
pytest = ">=3.3.1" | ||
pytest-cov = ">=2.5.1" | ||
pytest-invenio = ">=1.0.2,<1.1.0" | ||
pytest-mock = ">=1.6.0" | ||
pytest-pep8 = ">=1.0.6" | ||
pytest-random-order = ">=0.5.4" | ||
pytest-runner = ">=3.0.0,<5" | ||
requests = ">=2.20.0" | ||
rero-ebooks = {editable = true,path = "."} | ||
|
||
[requires] | ||
python_version = "3.6" | ||
|
||
[scripts] | ||
test = "python setup.py test" | ||
build_sphinx = "python setup.py build_sphinx" | ||
|
||
[pipenv] | ||
allow_prereleases = true |
Oops, something went wrong.