mirror of
https://github.com/romanz/amodem.git
synced 2026-04-19 20:55:59 +08:00
Add amodem.tests to source distribution
Also, fix a few pylint issues.
This commit is contained in:
4
setup.py
4
setup.py
@@ -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'],
|
||||
|
||||
Reference in New Issue
Block a user