Updated setup class and kalman filter class

This commit is contained in:
dario
2023-12-17 23:33:31 +01:00
parent 83c8374027
commit f5f30953ca
3 changed files with 18 additions and 7 deletions

View File

@@ -8,7 +8,7 @@ with open('README.md', 'r') as f:
setup(
name='spatz',
version='0.0.10',
package_dir={'': 'spatz'},
packages=find_packages(where='spatz'),
long_description=longdescription
packages=find_packages(exclude=["_tests"]),
long_description=longdescription,
long_description_content_type='text/markdown',
)