diff --git a/.travis.yml b/.travis.yml index 56e4751..000944b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,10 +3,14 @@ virt: lxd language: python matrix: include: - - python: 3.7 - env: TOX_ENV=py37 - python: 3.8 env: TOX_ENV=py38 + - python: 3.9 + env: TOX_ENV=py39 + - python: 3.10 + env: TOX_ENV=py39 + - python: 3.11 + env: TOX_ENV=py311 install: - pip install tox script: diff --git a/setup.cfg b/setup.cfg index 97318ec..a488f48 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,11 +1,12 @@ [metadata] name = git-deps -summary = automatically detect dependencies between git commits +description = automatically detect dependencies between git commits author = Adam Spiers -author-email = git@adamspiers.org +author_email = git@adamspiers.org license = GPL-2+ -home-page = https://github.com/aspiers/git-deps -description-file = README.md +home_page = https://github.com/aspiers/git-deps +long_description = file: README.md, USAGE.md, USE-CASES.md +long_description_content_type = text/markdown classifier = Development Status :: 4 - Beta Environment :: Console @@ -52,6 +53,18 @@ docs = build_sphinx # Use this option if your package is pure-python universal = 1 +[bdist_rpm] +release = 1 +packager = Adam Spiers +doc_files = README.md + USAGE.md + USE-CASES.md + CHANGES.rst + CONTRIBUTING.md + HISTORY.md + INSTALL.md + AUTHORS.rst + [build_sphinx] source_dir = docs build_dir = docs/_build diff --git a/setup.py b/setup.py index 6f11ee4..c9879ac 100644 --- a/setup.py +++ b/setup.py @@ -20,8 +20,6 @@ def setup_package(): 'six', 'pyscaffold>=2.5.10,<2.6a0', ] + sphinx, - long_description='README.md', - long_description_content_type="text/markdown", use_pyscaffold=True ) diff --git a/tox.ini b/tox.ini index 89f5094..f39f123 100644 --- a/tox.ini +++ b/tox.ini @@ -3,7 +3,7 @@ [tox] minversion = 1.8 -envlist = py37,py38,flake8 +envlist = py38,py39,py310,py311,flake8 skip_missing_interpreters = True [testenv]