minor packaging additions

This commit is contained in:
Xavier Olive 2021-01-11 14:45:32 +01:00
parent 56d70b03d2
commit 50cef7d424
3 changed files with 4 additions and 1 deletions

0
py.typed Normal file
View File

3
setup.cfg Normal file
View File

@ -0,0 +1,3 @@
# https://github.com/embray/setup.cfg
[metadata]
license_file = LICENSE

View File

@ -45,7 +45,7 @@ details = dict(
packages=find_packages(exclude=["contrib", "docs", "tests"]), packages=find_packages(exclude=["contrib", "docs", "tests"]),
install_requires=["numpy", "pyzmq"], install_requires=["numpy", "pyzmq"],
extras_require={"fast": ["Cython"]}, extras_require={"fast": ["Cython"]},
package_data={"pyModeS": ["*.pyx", "*.pxd"]}, package_data={"pyModeS": ["*.pyx", "*.pxd", "py.typed"]},
scripts=["pyModeS/streamer/modeslive"], scripts=["pyModeS/streamer/modeslive"],
) )