Skip to content

Commit

Permalink
migrate to pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
deronnax committed Nov 3, 2023
1 parent 077626a commit cdd3faf
Show file tree
Hide file tree
Showing 3 changed files with 55 additions and 56 deletions.
55 changes: 55 additions & 0 deletions pyproject.toml
@@ -0,0 +1,55 @@
[build-system]
requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"

[project]
name = "flake8-isort"
version = "6.1.1.dev0"
authors = [{ name = "Gil Forcada", email = "gil.gnome@gmail.com" }]
license = { text = "GPL version 2" }
description = "flake8 plugin that integrates isort ."
keywords = ["pep8", "flake8", "python", "isort", "imports"]
readme = "README.rst"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Framework :: Flake8",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development",
"Topic :: Software Development :: Quality Assurance",
]
urls = { Homepage = "https://github.com/gforcada/flake8-isort" }
requires-python = ">=3.8"
dependencies = ["flake8", "isort >= 5.0.0, <6"]

[project.entry-points]
"flake8.extension" = { I00 = "flake8_isort:Flake8Isort" }

[project.optional-dependencies]
test = ["pytest"]

[tool.setuptools]
py-modules = ["flake8_isort"]
zip-safe = false
include-package-data = true

[tool."zest.releaser"]
create-wheel = "yes"

[tool.check-manifest]
ignore = """
.installed.cfg"""

[tool.isort]
profile = "black"
53 changes: 0 additions & 53 deletions setup.cfg

This file was deleted.

3 changes: 0 additions & 3 deletions setup.py

This file was deleted.

0 comments on commit cdd3faf

Please sign in to comment.