Skip to content

Commit

Permalink
pyproject still
Browse files Browse the repository at this point in the history
  • Loading branch information
DevER-M committed Oct 23, 2024
1 parent cd8cb6c commit c160ffc
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,15 @@ classifiers = [
"Programming Language :: Python :: 3"
]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
dependencies = {file = ["requirements.txt"]}

[tool.setuptools.packages.find]
where = ["."] # list of folders that contain the packages (["."] by default)
include = ["pic/"] # package names should match these glob patterns (["*"] by default)
exclude = []

[tool.setuptools.package-data]
pic = ["pic/*"]

[project.scripts]
yami = "yami:main"

0 comments on commit c160ffc

Please sign in to comment.