Add amodem.tests to source distribution

Also, fix a few pylint issues.
This commit is contained in:
Roman Zeyde
2024-10-24 20:49:28 +03:00
parent a8e8bbbf02
commit 1d5fb11481
16 changed files with 53 additions and 58 deletions

View File

@@ -1,5 +1,5 @@
#!/usr/bin/env python
from setuptools import setup
from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand
class PyTest(TestCommand):
@@ -21,7 +21,7 @@ setup(
author_email='dev@romanzey.de',
license='MIT',
url='http://github.com/romanz/amodem',
packages=['amodem'],
packages=find_packages(),
tests_require=['pytest'],
cmdclass={'test': PyTest},
install_requires=['numpy'],