Skip to content

Commit

Permalink
Switch to pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
Viicos committed Jun 24, 2024
1 parent a514595 commit b8c6d9b
Show file tree
Hide file tree
Showing 7 changed files with 136 additions and 153 deletions.
10 changes: 0 additions & 10 deletions .bumpversion.cfg

This file was deleted.

3 changes: 3 additions & 0 deletions .flake8
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[flake8]
max-line-length=88
exclude=env,.tox,doc
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ jobs:

- name: Build sdist and wheel
run: |
pip install pip setuptools wheel --upgrade
python setup.py sdist bdist_wheel
pip install build --upgrade
python -m build
- name: Publish a Python distribution to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
Expand Down
129 changes: 129 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,129 @@
[build-system]
requires = ["setuptools>=61.0.0"]
build-backend = "setuptools.build_meta"

[project]
name = "django-digid-eherkenning"
version = "0.15.0"
description = "A Django app for DigiD/eHerkenning authentication flows"
authors = [
{name = "Maykin Media", email = "[email protected]"}
]
readme = "README.rst"
license = {file = "LICENSE"}
keywords = ["django", "authentication", "digid", "eherkenning", "eidas", "dutch", "nl", "netherlands"]
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: Django",
"Framework :: Django :: 4.2",
"Intended Audience :: Developers",
"Operating System :: Unix",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
]
requires-python = ">=3.10"
dependencies = [
"cryptography>=40.0.0",
"django>=4.2.0",
"django-sessionprofile",
"django-simple-certmanager",
"django-solo",
"lxml>=4.7.1",
"furl",
"maykin-python3-saml>=1.16.0",
]

[project.urls]
Homepage = "https://github.com/maykinmedia/django-digid-eherkenning"
Documentation = "https://django-digid-eherkenning.readthedocs.io/en/latest/"
"Bug Tracker" = "https://github.com/maykinmedia/django-digid-eherkenning/issues"
"Source Code" = "https://github.com/maykinmedia/django-digid-eherkenning"
Changelog = "https://github.com/maykinmedia/django-digid-eherkenning/blob/master/docs/CHANGELOG.rst"

[project.optional-dependencies]
oidc = [
"mozilla-django-oidc-db>=0.18.0",
]
tests = [
"django-test-migrations",
"pytest",
"pytest-django",
"pytest-mock",
"responses",
"freezegun",
"tox",
"isort",
"black",
"flake8",
]
coverage = [
"pytest-cov",
]
docs = [
"sphinx",
"sphinx-rtd-theme",
"psycopg2",
]
release = [
"bump-my-version",
"twine",
]

[tool.setuptools.packages.find]
include = ["digid_eherkenning*"]
namespaces = false

[tool.isort]
profile = "black"
combine_as_imports = true
known_django = "django"
known_first_party="digid_eherkenning"
sections=["FUTURE", "STDLIB", "DJANGO", "THIRDPARTY", "FIRSTPARTY", "LOCALFOLDER"]

[tool.pytest.ini_options]
testpaths = ["tests"]
DJANGO_SETTINGS_MODULE = "tests.project.settings"
markers = [
"callback: additional configuration for the callback fixture",
"mock_backend: class/claims to be returned by the mock backend fixture",
]

[tool.bumpversion]
current_version = "0.15.0"
files = [
{filename = "pyproject.toml"},
{filename = "README.rst"},
{filename = "docs/conf.py"},
]

[tool.coverage.run]
branch = true
source = [
"digid_eherkenning"
]
omit = [
# migrations run while django initializes the test db
"*/migrations/*",
]

[tool.coverage.report]
skip_covered = true
exclude_also = [
"if (typing\\.)?TYPE_CHECKING:",
"@(typing\\.)?overload",
"class .*\\(.*Protocol.*\\):",
"@(abc\\.)?abstractmethod",
"raise NotImplementedError",
"\\.\\.\\.",
"pass",
]
omit = [
"*/migrations/*",
]

[tool.coverage.html]
directory = "cover"
136 changes: 0 additions & 136 deletions setup.cfg

This file was deleted.

3 changes: 0 additions & 3 deletions setup.py

This file was deleted.

4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ deps =
django42: Django~=4.2
oidcenabled: psycopg
commands =
py.test tests \
pytest tests \
--cov --cov-report xml:reports/coverage-{envname}.xml \
{posargs}

Expand All @@ -63,6 +63,6 @@ extras =
deps =
psycopg
commands=
py.test check_sphinx.py -v \
pytest check_sphinx.py -v \
--tb=auto \
{posargs}

0 comments on commit b8c6d9b

Please sign in to comment.