Skip to content

Commit

Permalink
chore(pyproject): remove src to packages
Browse files Browse the repository at this point in the history
  • Loading branch information
FabianVegaA committed Mar 4, 2023
1 parent afc34b2 commit b1fb0a5
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ classifiers = [
"License :: BSD 3-Clause License",
]
packages = [
{ include = "sparrow", from = "src" },
{ include = "sparrow/function", from = "src" },
{ include = "sparrow/decorator", from = "src" },
{ include = "sparrow/datatype", from = "src" },
{ include = "sparrow/kind", from = "src" },
{ include = "sparrow" },
{ include = "sparrow/function" },
{ include = "sparrow/decorator" },
{ include = "sparrow/datatype" },
{ include = "sparrow/kind" },
]
keywords = ["functional", "programming", "decorator", "sparrow", "library"]

Expand All @@ -32,3 +32,9 @@ isort = "^5.12.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

[tool.isort]
profile = "black"

[tool.black]
line-length = 79

0 comments on commit b1fb0a5

Please sign in to comment.