Skip to content

Commit

Permalink
Switch to a pyproject.toml build system
Browse files Browse the repository at this point in the history
  • Loading branch information
mdmintz committed Sep 22, 2024
1 parent 55f2a8d commit 326b15b
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
[build-system]
requires = ["setuptools>=68.0.0", "wheel>=0.42.0"]
build-backend = "setuptools.build_meta"

[project]
name = "pynose"
readme = "README.md"
dynamic = [
"urls",
"version",
"license",
"authors",
"scripts",
"keywords",
"classifiers",
"description",
"entry-points",
"dependencies",
"requires-python",
"optional-dependencies",
]

[tool.setuptools]
packages = ["nose", "nose.plugins", "nose.sphinx", "nose.tools"]

[flake8]
ignore = ["W503"]

[nosetests]
nocapture = ["1"]
logging-level = ["INFO"]

0 comments on commit 326b15b

Please sign in to comment.