Skip to content

Commit

Permalink
Merge pull request #1555 from sbraz/tests
Browse files Browse the repository at this point in the history
Prevent installation of the "tests" package
  • Loading branch information
timothycrosley committed Oct 11, 2020
2 parents c241234 + 66d6345 commit fb0cdf7
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions pyproject.toml
Expand Up @@ -33,7 +33,9 @@ classifiers = [
urls = { Changelog = "https://github.com/pycqa/isort/blob/master/CHANGELOG.md" }
packages = [
{ include = "isort" },
{ include = "tests", format = "sdist" },
]
include = [
{ path = "tests", format = "sdist" },
]

[tool.poetry.dependencies]
Expand Down Expand Up @@ -99,5 +101,5 @@ logo = "art/logo.png"
palette = {scheme = "isort"}

[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"

0 comments on commit fb0cdf7

Please sign in to comment.