diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml new file mode 100644 index 0000000..7943d12 --- /dev/null +++ b/.github/workflows/pipeline.yml @@ -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 diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index dc6975a..0000000 --- a/.travis.yml +++ /dev/null @@ -1,32 +0,0 @@ -os: linux -dist: xenial - -language: python -python: 3.7 - -stages: -- lint readme -- deploy package - -jobs: - include: - - - stage: lint readme - install: - - pip install twine - script: - - python setup.py -q sdist bdist_wheel - - twine check dist/* - - - stage: deploy package - if: tag is present - deploy: - provider: pypi - distributions: sdist bdist_wheel - username: bittner - password: - secure: bjU1AfMX/fzvBdBA1kcTZIpFoc8cQw7WnVrflSesS452rueiS+aXEk9uFaGTXffWJdP793tmkLMQh1b1hwkwC5GCNf+tEHop9E4A6n+6IS0tDAuApcRCbrIlENhzyR/yNnsBOY6aa0KpVwOFMS94SMlT+q8ZkEw4IQHcNaej9ys= - on: - tags: true - install: skip - script: skip diff --git a/AUTHORS.rst b/AUTHORS.rst index 11bed2e..e27b761 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -1,8 +1,7 @@ Maintainers ----------- -* Derek Stegelman (@dstegelman), original author -* Peter Bittner (@bittner), current maintainer +* Peter Bittner (@bittner) Contributors ------------ @@ -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) diff --git a/bootstrap/__init__.py b/bootstrap/__init__.py index ab56915..b4d310e 100644 --- a/bootstrap/__init__.py +++ b/bootstrap/__init__.py @@ -1,8 +1,5 @@ """ -A collection of Bootstrap static files. +A collection of Bootstrap static files. Font Awesome. """ -__author__ = 'Peter Bittner' -__email__ = 'django@bittner.it' -__license__ = 'MIT' -__url__ = 'https://github.com/bittner/django-bootstrap-static' -__version__ = '5.3.3' + +__version__ = "5.3.3" diff --git a/fontawesome/__init__.py b/fontawesome/__init__.py index 63dfef9..de93aed 100644 --- a/fontawesome/__init__.py +++ b/fontawesome/__init__.py @@ -1,8 +1,5 @@ """ -A collection of Bootstrap static files. +A collection of Bootstrap static files. Font Awesome. """ -__author__ = 'Peter Bittner' -__email__ = 'django@bittner.it' -__license__ = 'MIT' -__url__ = 'https://github.com/bittner/django-bootstrap-static' -__version__ = '6.5.2' + +__version__ = "6.5.2" diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..d5e93432 --- /dev/null +++ b/pyproject.toml @@ -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 = "django@bittner.it"}, +] +maintainers = [ + {name = "Peter Bittner", email = "django@bittner.it"}, +] +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" diff --git a/setup.cfg b/setup.cfg deleted file mode 100644 index 2a9acf1..0000000 --- a/setup.cfg +++ /dev/null @@ -1,2 +0,0 @@ -[bdist_wheel] -universal = 1 diff --git a/setup.py b/setup.py deleted file mode 100644 index 3f4c30b..0000000 --- a/setup.py +++ /dev/null @@ -1,43 +0,0 @@ -""" -Packaging setup for Django-Bootstrap-Static -""" -from setuptools import setup, find_packages - -import bootstrap as package - -setup( - name='django-bootstrap-static', - version=package.__version__, - license=package.__license__, - author=package.__author__, - author_email=package.__email__, - description=package.__doc__.strip(), - long_description=open("README.rst", "r").read(), - long_description_content_type='text/x-rst', - url=package.__url__, - 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', - ], - packages=find_packages(), - install_requires=[], - include_package_data=True, - zip_safe=False, -) diff --git a/tests/test_packaging.py b/tests/test_packaging.py new file mode 100644 index 0000000..aa097b3 --- /dev/null +++ b/tests/test_packaging.py @@ -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" diff --git a/tox.ini b/tox.ini new file mode 100644 index 0000000..d7ca24c --- /dev/null +++ b/tox.ini @@ -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