Skip to content

Commit

Permalink
Move the metadata into PEP 621-compliant pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
KOLANICH committed Feb 16, 2023
1 parent 40bf434 commit 0120ca5
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 30 deletions.
35 changes: 34 additions & 1 deletion pyproject.toml
@@ -1,3 +1,36 @@
[build-system]
requires = ["setuptools>=42.2"]
requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"

[project]
name = "EditorConfig"
authors = [{name = "EditorConfig Team"}]
license = {text = "PSF-2.0"}
description = "EditorConfig File Locator and Interpreter for Python"
readme = "README.rst"
classifiers = [
"License :: OSI Approved :: Python Software Foundation License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: Implementation :: PyPy",
]
dynamic = ["version"]

[project.urls]
Homepage = "https://editorconfig.org/"
"Source Code" = "https://github.com/editorconfig/editorconfig-core-py"
"Bug Tracker" = "https://github.com/editorconfig/editorconfig-core-py/issues"

[project.scripts]
editorconfig = "editorconfig.__main__:main"

[tool.setuptools]
packages = ["editorconfig"]
include-package-data = false
29 changes: 0 additions & 29 deletions setup.cfg

This file was deleted.

0 comments on commit 0120ca5

Please sign in to comment.