20 lines
431 B
Python
Executable file
20 lines
431 B
Python
Executable file
#!/usr/bin/python3
|
|
|
|
from setuptools import setup
|
|
|
|
setup(name='python3-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=[
|
|
('lib/python-validity/', ['dbus_service/dbus-service']),
|
|
]
|
|
)
|