forked from uunicorn/python-validity
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·21 lines (19 loc) · 717 Bytes
/
setup.py
File metadata and controls
executable file
·21 lines (19 loc) · 717 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/python3
from setuptools import setup
setup(name='python-validity',
version='0.14',
py_modules=[],
packages=['validitysensor'],
scripts=[
'bin/validity-led-dance',
'bin/validity-sensors-firmware',
],
install_requires=['cryptography >= 2.1.4', 'pyusb >= 1.0.0', 'pyyaml >= 3.12'],
data_files=[
('share/dbus-1/system.d/', ['dbus_service/io.github.uunicorn.Fprint.conf']),
('lib/python-validity/', ['dbus_service/dbus-service']),
('share/python-validity/playground/', [
'scripts/dbus-cmd.py', 'scripts/lsdbus.py', 'scripts/factory-reset.py',
'scripts/prototype.py'
]),
])