diff --git a/.travis.yml b/.travis.yml index 70d38f4..582cdae 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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__ diff --git a/setup.py b/setup.py index 9f6c1c1..60ed414 100644 --- a/setup.py +++ b/setup.py @@ -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",