Skip to content

Commit

Permalink
Modernize packaging and CI (pyproject.toml, Tox, GHA)
Browse files Browse the repository at this point in the history
  • Loading branch information
bittner committed Jun 18, 2024
1 parent 076d7d5 commit 4643b8c
Show file tree
Hide file tree
Showing 11 changed files with 164 additions and 93 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Pipeline

on: push

jobs:
check:
runs-on: ubuntu-latest
strategy:
matrix:
env:
- lint
- format
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.10'
- run: pip install tox
- run: tox run -e ${{ matrix.env }}

test:
needs:
- check
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- '3.10'
- '3.11'
- '3.12'
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- run: pip install tox
- run: tox run -e py
32 changes: 0 additions & 32 deletions .travis.yml

This file was deleted.

10 changes: 8 additions & 2 deletions AUTHORS.rst
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
Maintainers
-----------

* Derek Stegelman (@dstegelman), original author
* Peter Bittner (@bittner), current maintainer
* Peter Bittner (@bittner)

Contributors
------------
Expand All @@ -11,3 +10,10 @@ Contributors
* Aaron VanDerlip (@aaronvanderlip)
* Travis Swicegood (@tswicegood)
* Pablo Castellano (@PabloCastellano)
* Amit Kumar (@umrao-ak47)
* Wolfgang Herget (@wherget)

Original Author
---------------

* Derek Stegelman (@dstegelman)
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ Also ships the latest jQuery compatible with Bootstrap, for optional inclusion.
.. |fontawesome| image:: https://img.shields.io/badge/Font_Awesome-v6.5.2-1c9a71.svg
:alt: Font Awesome 6.5.2
:target: https://fontawesome.com/icons?m=free
.. |build-status| image:: https://img.shields.io/travis/bittner/django-bootstrap-static/master.svg?logo=travis
.. |pipeline| image:: https://github.com/bittner/django-bootstrap-static/actions/workflows/pipeline.yml/badge.svg
:alt: Build status
:target: https://travis-ci.org/bittner/django-bootstrap-static
:target: https://github.com/bittner/django-bootstrap-static/actions/workflows/pipeline.yml

Install
=======
Expand Down
9 changes: 3 additions & 6 deletions bootstrap/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
"""
A collection of Bootstrap static files.
A collection of Bootstrap static files. Font Awesome.
"""
__author__ = 'Peter Bittner'
__email__ = '[email protected]'
__license__ = 'MIT'
__url__ = 'https://github.com/bittner/django-bootstrap-static'
__version__ = '5.3.3'

__version__ = "5.3.3"
9 changes: 3 additions & 6 deletions fontawesome/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
"""
A collection of Bootstrap static files.
A collection of Bootstrap static files. Font Awesome.
"""
__author__ = 'Peter Bittner'
__email__ = '[email protected]'
__license__ = 'MIT'
__url__ = 'https://github.com/bittner/django-bootstrap-static'
__version__ = '6.5.2'

__version__ = "6.5.2"
58 changes: 58 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=64", "setuptools_scm>=8"]

[project]
name = "django-bootstrap-static"
dynamic = ["version"]
description = "A collection of Bootstrap static files."
readme = "README.rst"
license = {file = "LICENSE"}
authors = [
{name = "Peter Bittner", email = "[email protected]"},
]
maintainers = [
{name = "Peter Bittner", email = "[email protected]"},
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
"Framework :: Django",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries",
"Topic :: Utilities",
"License :: OSI Approved :: MIT License",
]
keywords=[
"django",
"staticfiles",
"bootstrap",
"jquery",
"fontawesome",
]

[project.urls]
source = "https://github.com/bittner/django-bootstrap-static"

[tool.ruff]
extend-exclude = []
extend-include = []

[tool.ruff.lint]
extend-select = ["ALL"]
extend-ignore = ["ANN", "D", "FBT002", "INP001", "Q000", "TRY200", "UP"]

[tool.ruff.lint.per-file-ignores]
"tests/*.py" = ["S101"]

[tool.setuptools]
include-package-data = true
packages = ["bootstrap", "fontawesome"]

[tool.setuptools_scm]
local_scheme = "no-local-version"
2 changes: 0 additions & 2 deletions setup.cfg

This file was deleted.

43 changes: 0 additions & 43 deletions setup.py

This file was deleted.

11 changes: 11 additions & 0 deletions tests/test_packaging.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
"""Functional tests."""


def test_imports():
"""Importing the package should work as described in the README."""

import bootstrap
import fontawesome

assert bootstrap.__version__ == "5.3.3"
assert fontawesome.__version__ == "6.5.2"
42 changes: 42 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
[tox]
envlist =
lint
format
py

[testenv]
description = Unit tests and test coverage
deps = pytest
commands = pytest {posargs}

[testenv:clean]
description = Remove bytecode and other debris
skip_install = true
deps = pyclean
commands = pyclean {posargs:--debris .}

[testenv:format]
description = Ensure consistent code style (Ruff)
skip_install = true
deps = ruff
commands = ruff format {posargs:--check --diff .}

[testenv:lint]
description = Lightening-fast linting (Ruff)
skip_install = true
deps = ruff
commands = ruff check {posargs:--output-format=full .}

[testenv:package]
description = Build package and check metadata (or upload package)
skip_install = true
deps =
build
twine
commands =
python -m build
twine {posargs:check --strict} dist/*
passenv =
TWINE_USERNAME
TWINE_PASSWORD
TWINE_REPOSITORY_URL

0 comments on commit 4643b8c

Please sign in to comment.