Skip to content

Commit

Permalink
refactor: change to top-level module folder
Browse files Browse the repository at this point in the history
according to python/typing#1333
  • Loading branch information
9y2070m committed Apr 11, 2023
1 parent 1de3471 commit f16d2d0
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@


def _read_file():
with open("deprecation.py", "r") as f:
with open("deprecation/__init__.py", "r") as f:
return f.read()


Expand All @@ -34,7 +34,7 @@ def get_version():
install_requires=["packaging"],
keywords=["deprecation"],
long_description=io.open("README.rst", encoding="utf-8").read(),
py_modules=["deprecation"],
packages=["deprecation"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Apache Software License",
Expand All @@ -56,6 +56,6 @@ def get_version():
"Source": "https://github.com/briancurtin/deprecation",
"Bug Tracker": "https://github.com/briancurtin/deprecation/issues"},
package_data = {
"deprecation": ["py.typed", "deprecation.pyi"],
"deprecation": ["py.typed", "__init__.pyi"],
},
)

0 comments on commit f16d2d0

Please sign in to comment.