more debugging

This commit is contained in:
Travis CI 2020-11-09 16:55:50 -08:00
parent 27a128b79b
commit 2b2a2678b0
2 changed files with 11 additions and 2 deletions

View File

@ -1,21 +1,25 @@
language: python
python:
- '3.6'
- '3.8'
install:
- python setup.py install_egg_info
- pip install -U setuptools
- pip install .
- pip install -r requirements.txt
- pip install .
script:
- python setup.py test
- if [[ ${TRAVIS_PYTHON_VERSION:0:1} == "3" ]]; then pre-commit run --all-files; fi
- doit update_languages
after_success:
- git diff
- git status
- git diff-index HEAD --
- if ! git diff-index --quiet HEAD --; then .travis/push.sh; fi
- echo $TRAVIS_TAG
- git clean -df
- git diff-index HEAD --
- git diff
- git status
deploy:
provider: pypi
user: __token__

View File

@ -15,6 +15,11 @@ setup(
install_requires=["reportlab", "Pillow", "configargparse"],
tests_require=["pytest", "six", "pytest-flake8", "pre-commit", "doit"],
url="http://domtabs.sandflea.org",
project_urls={
"Say Thanks!": "https://boardgamegeek.com/thread/926575/web-page-generate-tabbed-dividers",
"Source": "https://github.com/sumpfork/dominiontabs",
"Tracker": "https://github.com/sumpfork/dominiontabs/issues",
},
include_package_data=True,
author="Peter Gorniak",
author_email="sumpfork@mailmight.net",