Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .python-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ensembl_metadata_api
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,15 @@ os: linux

python:
- "3.8"
- "3.9"

env:
- TESTENV=test

install:
before_script:
- pip install -r requirements-test.txt
- pip install .
- export PYTHONPATH=$PYTHONPATH:$PWD/src

script:
- if [[ "$TESTENV" == "test" ]]; then coverage run -m pytest; fi
2 changes: 2 additions & 0 deletions requirements.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,5 @@ mysqlclient
pymysql
sqlalchemy
types-pymysql
git+https://github.com/Ensembl/ensembl-py.git#egg=ensembl-py
mysql
56 changes: 53 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,16 +1,66 @@
#
# This file is autogenerated by pip-compile with python 3.8
# This file is autogenerated by pip-compile with python 3.10
# To update, run:
#
# pip-compile --output-file=requirements.txt requirements.in
#
attrs==22.1.0
# via pytest
certifi==2022.9.24
# via requests
charset-normalizer==2.1.1
# via requests
ensembl-hive @ git+https://github.com/Ensembl/ensembl-hive.git@main
# via ensembl-py
ensembl-py @ git+https://github.com/Ensembl/ensembl-py.git
# via -r requirements.in
greenlet==1.1.0
# via sqlalchemy
mysqlclient==2.0.3
idna==3.4
# via requests
iniconfig==1.1.1
# via pytest
mysql==0.0.3
# via -r requirements.in
mysqlclient==2.0.3
# via
# -r requirements.in
# ensembl-py
# mysql
packaging==21.3
# via pytest
pluggy==1.0.0
# via pytest
py==1.11.0
# via pytest
pymysql==1.0.2
# via -r requirements.in
pyparsing==3.0.9
# via packaging
pytest==7.1.3
# via
# ensembl-py
# pytest-dependency
pytest-dependency==0.5.1
# via ensembl-py
python-dotenv==0.19.2
# via ensembl-py
pyyaml==6.0
# via ensembl-py
requests==2.28.1
# via ensembl-py
six==1.16.0
# via sqlalchemy-utils
sqlalchemy==1.4.21
# via -r requirements.in
# via
# -r requirements.in
# ensembl-py
# sqlalchemy-utils
sqlalchemy-utils==0.37.9
# via ensembl-py
tomli==2.0.1
# via pytest
types-pymysql==1.0.0
# via -r requirements.in
urllib3==1.26.12
# via requests
3 changes: 3 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,5 +41,8 @@
'Programming Language :: Python',
'Programming Language :: Python :: 3',
"Programming Language :: Python :: 3.8",
],
install_requires=[
'ensembl-py @ git+https://github.com/Ensembl/ensembl-py.git',
]
)
Loading