Skip to content

Commit

Permalink
Add the pyproject file for building with setuptools (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
AaronAtDuo authored Jun 14, 2024
1 parent c24a53c commit 83af674
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 1 deletion.
33 changes: 33 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
[build-system]
requires = ["setuptools >= 70.0"]
build-backend = "setuptools.build_meta"

[project]
name = "duo_hmac"
version = "0.1.0"
dependencies = []
requires-python = ">=3.8"
authors = [
{name = "Duo Security"}
]
maintainers = [
{name = "Duo Security"}
]
description = "An implementation of the Duo Security API authentication scheme."
readme = "README.md"
keywords = ["duo", "hmac"]
classifiers = [
"Development Status - 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Security :: Cryptography",
]

[project.urls]
Repository = "https://github.com/duosecurity/duo_hmac_python"
"Bug Tracker" = "https://github.com/duosecurity/duo_hmac_python/issues"
3 changes: 2 additions & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
requests >= 2.32.0
flake8 >= 7.0.0
requests >= 2.32.0
setuptools >= 70.0.0

0 comments on commit 83af674

Please sign in to comment.