Skip to content

Commit

Permalink
Copy-paste those changes from a different branch
Browse files Browse the repository at this point in the history
Signed-off-by: Stavros Ntentos <[email protected]>
  • Loading branch information
stdedos committed Dec 3, 2023
1 parent 37aea8b commit cbdc008
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 18 deletions.
54 changes: 36 additions & 18 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,24 +2,21 @@
requires = ["setuptools>=66.1"]
build-backend = "setuptools.build_meta"

[tool.setuptools]
license-files = ["LICENSE"]

[tool.setuptools.packages.find]
exclude=["tests*", "sandbox"]

[project]
name = "pylint-pytest"
version = "1.1.3"
version = "2.0.0rc0"
license = {file = "LICENSE"}
description = "A Pylint plugin to suppress pytest-related false positives."

authors = [
{name = "Reverb Chu"},
]
maintainers = [
{name = "Stavros Ntentos", email = "[email protected]"},
{name = "Pierre Sassoulas", email = "[email protected]"},
]
description = "A Pylint plugin to suppress pytest-related false positives."
readme = "README.md"

readme = "README.md"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
Expand All @@ -34,27 +31,48 @@ classifiers = [
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
]
keywords = [
"pylint",
"pytest",
"plugin",
]
keywords = ["pylint", "pytest", "plugin"]
requires-python = ">=3.8"

requires-python = ">=3.8"
dependencies = [
"pylint<3",
"pytest>=4.6"
"pylint>=2",
"pytest>=4.6",
]

[project.optional-dependencies]
test = [
"pytest",
"pytest-cov",
# For linting purposes, only pylint>3 is supported
"pylint>=3",
]

[project.urls]
"Changelog"="https://github.com/pylint-dev/pylint-pytest/blob/master/CHANGELOG.md"
"Documentation"="https://github.com/pylint-dev/pylint-pytest#readme"
"Say Thanks!"="https://saythanks.io/to/stdedos"
"Source"="https://github.com/pylint-dev/pylint-pytest"
"Tracker"="https://github.com/pylint-dev/pylint-pytest/issues"
Changelog = "https://github.com/pylint-dev/pylint-pytest/blob/master/CHANGELOG.md"
Documentation = "https://github.com/pylint-dev/pylint-pytest#readme"
Homepage = "https://github.com/pylint-dev/pylint-pytest"
Source = "https://github.com/pylint-dev/pylint-pytest"
Tracker = "https://github.com/pylint-dev/pylint-pytest/issues"
"Say Thanks!" = "https://saythanks.io/to/stdedos"

[tool.setuptools]
license-files = ["LICENSE"]
tests_require = [
"pytest",
"pytest-cov",
]

[tool.setuptools.packages.find]
exclude = [
"tests*",
"sandbox",
]

[tool.aliases]
test = "pytest"
Expand Down
7 changes: 7 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
#!/usr/bin/env python3

"""
Only a compatibility placeholder
https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html
"""

from setuptools import setup

setup()

0 comments on commit cbdc008

Please sign in to comment.