Skip to content

Commit

Permalink
Add pyproject.toml file.
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeTheHammer committed Jan 12, 2023
1 parent 3d2f15f commit dd0277d
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[project]
name = "wmul_test_utils"
version = "0.2.0"
authors = [
{ name="Michael Stanley", email="stanley50@marshall.edu" },
]
description = "Various utilities for testing WMUL-FM's other packages."
readme = "README.md"
requires-python = ">=3.6"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Topic :: Software Development :: Testing"
]

[project.optional-dependencies]
test = [
"pytest", "pytest-mock"
]

[project.urls]
"Homepage" = "https://github.com/MikeTheHammer/wmul_test_utils"
"Bug Tracker" = "https://github.com/MikeTheHammer/wmul_test_utils/issues"

0 comments on commit dd0277d

Please sign in to comment.