Skip to content

Commit

Permalink
move py.typed to setup.cfg
Browse files Browse the repository at this point in the history
  • Loading branch information
purarue committed Sep 25, 2023
1 parent 94b9cca commit 519a53b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
4 changes: 4 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ classifiers =
[options]
python_requires = >=3.8
zip_safe = False
include_package_data = True

[options.package_data]
my = py.typed

[options.entry_points]
console_scripts =
Expand Down
5 changes: 0 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,7 @@ def subpackages() -> Iterator[str]:
yield p


username = "seanbreckenridge"
if __name__ == "__main__":
setup(
packages=list(subpackages()),
package_data={"my": ["py.typed"]},
entry_points={
"console_scripts": ["backup_to = my.utils.backup_to.__main__:main"]
},
)

0 comments on commit 519a53b

Please sign in to comment.