Skip to content

Commit

Permalink
fixup! rework dev dependencies management
Browse files Browse the repository at this point in the history
no need for setup.* files. used to migrate two tools:
`setuptools-py2cfg >>setup.cfg`
then
`ini2toml setup.cfg >> pyproject.toml`
  • Loading branch information
Anis Da Silva Campos committed Dec 4, 2023
1 parent ac9972c commit 4981b91
Show file tree
Hide file tree
Showing 3 changed files with 53 additions and 55 deletions.
54 changes: 53 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,62 @@
# Only a configuration storage, for now
[build-system]
requires = ["setuptools"]
requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"

[project]
name = "pylint-pytest"
version = "1.1.7"
authors = [{name = "Stavros Ntentos", email = "[email protected]"}]
license = {text = "MIT"}
description = "A Pylint plugin to suppress pytest-related false positives."
keywords = ["pylint", "pytest", "plugin"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Quality Assurance",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"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",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
]
requires-python = ">=3.8"
dependencies = [
"pylint>=2,<4",
"pytest>=4.6",
]

[project.readme]
file = "README.md"
content-type = "text/markdown"

[project.urls]
Homepage = "https://github.com/pylint-dev/pylint-pytest"
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"


[tool.aliases]
test = "pytest"

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

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

[tool.black]
line-length = 100

Expand Down
49 changes: 0 additions & 49 deletions setup.cfg

This file was deleted.

5 changes: 0 additions & 5 deletions setup.py

This file was deleted.

0 comments on commit 4981b91

Please sign in to comment.