Skip to content

Commit

Permalink
Merge pull request #7 from mkoeppe/pyproject
Browse files Browse the repository at this point in the history
py: Modernize metadata
  • Loading branch information
mkoeppe committed Dec 25, 2023
2 parents ded0dfd + 8c0d61c commit d395ced
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 20 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>=61.2"]
build-backend = "setuptools.build_meta"

[project]
name = "gnumake_tokenpool"
authors = [{name = "Milan Hauth", email = "[email protected]"}]
description = "jobclient and jobserver for the GNU make tokenpool protocol"
keywords = ["jobclient", "jobserver", "gnumake", "tokenpool", "jobqueue", "job", "queue", "gnu", "make"]
readme = {file = 'readme.md', content-type='text/markdown'}
license = {text = "MIT"}
classifiers = [
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: MIT License",
]
dynamic = ["version"]

[project.urls]
Homepage = "https://github.com/milahu/gnumake-tokenpool"

[tool.setuptools]
include-package-data = false

[tool.setuptools.packages.find]
where = ["py/src"]
namespaces = false

[tool.setuptools.dynamic]
version = {attr = "gnumake_tokenpool.tokenpool.__version__"}
20 changes: 0 additions & 20 deletions setup.cfg

This file was deleted.

0 comments on commit d395ced

Please sign in to comment.