ADD requirements.txt and requirements to setup.py

This commit is contained in:
Patrick Kanzler 2015-11-27 21:51:58 +01:00
parent ef8035527c
commit 8b5798eedf
2 changed files with 8 additions and 1 deletions

1
requirements.txt Normal file
View File

@ -0,0 +1 @@
-e .

View File

@ -23,7 +23,13 @@ setup(
'Operating System :: GNU/Linux', 'Operating System :: GNU/Linux',
'Intended Audience :: Developers', 'Intended Audience :: Developers',
'Programming Language :: Python', 'Programming Language :: Python',
'Topic :: System :: Pheripherals', 'Topic :: System :: Peripherals',
'Topic :: Software Development :: Libraries :: Python Modules', 'Topic :: Software Development :: Libraries :: Python Modules',
], ],
install_requires=[
'pyusb',
'Pillow>=2.0',
'qrcode>=4.0',
'pyserial',
],
) )