configured as pypi package
This commit is contained in:
parent
0bb758e9d2
commit
cb4f98a7b0
|
@ -0,0 +1,8 @@
|
|||
# Compiled python modules.
|
||||
*.pyc
|
||||
|
||||
# Setuptools distribution folder.
|
||||
/dist/
|
||||
|
||||
# Python egg metadata, regenerated from source files by setuptools.
|
||||
/*.egg-info
|
|
@ -0,0 +1,3 @@
|
|||
"""
|
||||
This is the Pyledriver home security system
|
||||
"""
|
|
@ -0,0 +1,14 @@
|
|||
from setuptools import setup
|
||||
|
||||
setup(name='pyledriver',
|
||||
version='0.1',
|
||||
description='Pyledriver Home Security System',
|
||||
url='http://github.com/ndwarshuis/pyledriver',
|
||||
author='Nathan Dwarshuis',
|
||||
author_email='natedwrshuis@gmail.com',
|
||||
license='GPLv3',
|
||||
packages=['pyledriver'],
|
||||
install_requires=['Flask', 'evdev', 'Flask-WTF', 'numpy',
|
||||
'psutil', 'pyaudio', 'pygame', 'pyinotify',
|
||||
'RPi.GPIO', 'requests', 'yaml'],
|
||||
zip_safe=False)
|
Loading…
Reference in New Issue