add files in MANIFEST rather than setup
This commit is contained in:
parent
091dfac296
commit
ebbb9dc176
2 changed files with 2 additions and 1 deletions
|
@ -7,4 +7,6 @@ include raylib/*.h
|
||||||
exclude raylib/*.c
|
exclude raylib/*.c
|
||||||
exclude raylib/*.o
|
exclude raylib/*.o
|
||||||
include version.py
|
include version.py
|
||||||
|
include raylib/py.typed
|
||||||
|
include pyray/py.typed
|
||||||
|
|
||||||
|
|
1
setup.py
1
setup.py
|
@ -38,7 +38,6 @@ setup(
|
||||||
"Programming Language :: Python :: 3.8",
|
"Programming Language :: Python :: 3.8",
|
||||||
"Programming Language :: Python :: 3.7",
|
"Programming Language :: Python :: 3.7",
|
||||||
],
|
],
|
||||||
package_data={"raylib": ["py.typed"], "pyray": ["py.typed"]},
|
|
||||||
packages=["raylib", "pyray"],
|
packages=["raylib", "pyray"],
|
||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
install_requires=["cffi>=1.17.0rc1"],
|
install_requires=["cffi>=1.17.0rc1"],
|
||||||
|
|
Reference in a new issue