Skip to content

Commit

Permalink
[#29] Removing the LICENSE and README files from the project include …
Browse files Browse the repository at this point in the history
…section, as this had unintended consequences of installing them into the site-packages directory instead of along side the package code. This is related to python-poetry/poetry#2015 . Since the LICENSE is available in the dist-info directory along side the package, then this is sufficient.

Additionally, the python version classifiers will be automatically added by poetry from the version range specification in the tool.poetry.dependencies section, so no need to explicitly define them.
  • Loading branch information
Carl Crowder committed May 20, 2023
1 parent 8cb1b6e commit 43508f2
Showing 1 changed file with 1 addition and 13 deletions.
14 changes: 1 addition & 13 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pylint-plugin-utils"
version = "0.8.1"
version = "0.8.2"
readme = "README.md"
description = "Utilities and helpers for writing Pylint plugins"
repository = "https://github.com/PyCQA/pylint-plugin-utils"
Expand All @@ -12,23 +12,11 @@ classifiers=[
"Intended Audience :: Developers",
"Operating System :: Unix",
"Topic :: Software Development :: Quality Assurance",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
keywords=["pylint","plugin","helpers"]
packages = [
{include = "pylint_plugin_utils/"}
]
include = [
"LICENSE",
"*.rst",
"*.md"
]

[tool.poetry.dependencies]
python = ">=3.7,<4.0"
Expand Down

0 comments on commit 43508f2

Please sign in to comment.