Adjusting setup.py

This commit is contained in:
László Károlyi 2018-04-23 13:14:15 +02:00
parent 0d2c8e229e
commit be77759e8e
Signed by: karolyi
GPG key ID: 2DCAF25E55735BFE
2 changed files with 5 additions and 4 deletions

View file

@ -1,7 +1,7 @@
include LICENSE README.md
recursive-include ecrterm *
prune ecrterm/tests
#recursive-exclude ecrterm __pycache__
#recursive-exclude ecrterm *.pyc
#recursive-exclude ecrterm *.pyo
#recursive-exclude ecrterm *.orig
recursive-exclude * __pycache__
recursive-exclude * *.pyc
recursive-exclude * *.pyo
recursive-exclude * *.orig

View file

@ -8,6 +8,7 @@ setup(
packages=find_packages(exclude=['ecrterm.tests']),
license='LGPL-3',
install_requires=['pyserial'],
include_package_data=True,
classifiers=[
'License :: OSI Approved :: GNU Lesser General Public License v3 or '
'later (LGPLv3+)',