Skip to content
This repository was archived by the owner on Aug 29, 2025. It is now read-only.
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 41 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
[build-system]
requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"

[project]
name = "flake8_polyfill"
description = "Polyfill package for Flake8 plugins"
authors = [{name = "Ian Stapleton Cordasco", email = "[email protected]"}]
license = "MIT"
license-files = ["LICENSE"]
classifiers = [
"Environment :: Console",
"Framework :: Flake8",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Quality Assurance",
]
urls = {Homepage = "https://github.com/pycqa/flake8-polyfill"}
requires-python = ">=3.6"
dependencies = ["flake8"]
dynamic = ["version"]
readme = "README.rst"

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

[tool.setuptools.dynamic]
version = {attr = "flake8_polyfill.__version__"}

[tool.pytest.ini_options]
norecursedirs = [".git", ".*", "*.egg*", "old", "docs", "dist", "build"]
addopts = "-rw"
41 changes: 0 additions & 41 deletions setup.cfg

This file was deleted.

4 changes: 0 additions & 4 deletions setup.py

This file was deleted.