Skip to content

Commit

Permalink
Move the metadata into PEP 621-compliant pyproject.toml (#54)
Browse files Browse the repository at this point in the history
Co-authored-by: KOLANICH <kolan_n@mail.ru>
  • Loading branch information
xuhdev and KOLANICH authored Dec 12, 2024
1 parent 4171499 commit e816694
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 29 deletions.
34 changes: 33 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,35 @@
[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.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"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
28 changes: 0 additions & 28 deletions setup.cfg

This file was deleted.

0 comments on commit e816694

Please sign in to comment.