Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move the metadata into PEP 621-compliant pyproject.toml #45

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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.