Skip to content

Commit 43508f2

Browse files
author
Carl Crowder
committed
[#29] Removing the LICENSE and README files from the project include 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.
1 parent 8cb1b6e commit 43508f2

File tree

1 file changed

+1
-13
lines changed

1 file changed

+1
-13
lines changed

pyproject.toml

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "pylint-plugin-utils"
3-
version = "0.8.1"
3+
version = "0.8.2"
44
readme = "README.md"
55
description = "Utilities and helpers for writing Pylint plugins"
66
repository = "https://github.com/PyCQA/pylint-plugin-utils"
@@ -12,23 +12,11 @@ classifiers=[
1212
"Intended Audience :: Developers",
1313
"Operating System :: Unix",
1414
"Topic :: Software Development :: Quality Assurance",
15-
"Programming Language :: Python",
16-
"Programming Language :: Python :: 3",
17-
"Programming Language :: Python :: 3 :: Only",
18-
"Programming Language :: Python :: 3.7",
19-
"Programming Language :: Python :: 3.8",
20-
"Programming Language :: Python :: 3.9",
21-
"Programming Language :: Python :: 3.10",
2215
]
2316
keywords=["pylint","plugin","helpers"]
2417
packages = [
2518
{include = "pylint_plugin_utils/"}
2619
]
27-
include = [
28-
"LICENSE",
29-
"*.rst",
30-
"*.md"
31-
]
3220

3321
[tool.poetry.dependencies]
3422
python = ">=3.7,<4.0"

0 commit comments

Comments
 (0)