python-validity/setup.py
Viktor Dragomiretskyy 29c529f5c6 Don't need to own a well-known bus name any more.
Allow open-fprintd call our methods.
2020-07-11 05:38:31 +12:00

22 lines
611 B
Python
Executable file

#!/usr/bin/python3
from setuptools import setup
setup(name='python-validity',
version='0.1',
py_modules = [],
packages=['validitysensor'],
scripts=[
'bin/validity-led-dance',
'bin/validity-sensors-initializer',
],
install_requires=[
'cryptography >= 2.1.4',
'pyusb >= 1.0.2'
],
data_files=[
('share/python-validity/playground/', ['factory-reset.py', 'pair.py', 'prototype.py']),
('share/dbus-1/system.d/', ['dbus_service/io.github.uunicorn.Fprint.conf']),
('lib/python-validity/', ['dbus_service/dbus-service']),
]
)