Skip to content
Open
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
8 changes: 6 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
21 changes: 17 additions & 4 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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 <git@adamspiers.org>
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
Expand Down
2 changes: 0 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
)

Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

[tox]
minversion = 1.8
envlist = py37,py38,flake8
envlist = py38,py39,py310,py311,flake8
skip_missing_interpreters = True

[testenv]
Expand Down