mirror of
https://github.com/phooky/Apple-410.git
synced 2026-04-25 09:16:57 +00:00
* 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:
@@ -1,5 +1,6 @@
|
||||
import sys
|
||||
import argparse
|
||||
from . import Apple410
|
||||
|
||||
def main():
|
||||
parser = argparse.ArgumentParser("apple410",
|
||||
|
||||
@@ -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',
|
||||
],
|
||||
},
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user