* require pyserial, not serial, since someone decided to pollute the namespace with a half-baked package (of course)

* get import ducks in row
This commit is contained in:
Adam Mayer 2017-12-09 21:58:01 -05:00
parent eac877130f
commit a2f0051137
2 changed files with 3 additions and 2 deletions

View File

@ -1,5 +1,6 @@
import sys
import argparse
from . import Apple410
def main():
parser = argparse.ArgumentParser("apple410",

View File

@ -44,7 +44,7 @@ setup(
# You can just specify the packages manually here if your project is
# simple. Or you can use find_packages().
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
install_requires=['serial'],
install_requires=['pyserial'],
python_requires='>=3',
# To provide executable scripts, use entry points in preference to the
@ -52,7 +52,7 @@ setup(
# pip to create the appropriate form of executable for the target platform.
entry_points={
'console_scripts': [
'apple410=apple410:main',
'apple410=apple410.cmdline:main',
],
},
)