configured as pypi package

This commit is contained in:
ndwarshuis 2019-02-06 01:23:40 -05:00
parent 0bb758e9d2
commit cb4f98a7b0
60 changed files with 25 additions and 0 deletions

8
.gitignore vendored Normal file
View File

@ -0,0 +1,8 @@
# Compiled python modules.
*.pyc
# Setuptools distribution folder.
/dist/
# Python egg metadata, regenerated from source files by setuptools.
/*.egg-info

3
pyledriver/__init__.py Normal file
View File

@ -0,0 +1,3 @@
"""
This is the Pyledriver home security system
"""

14
setup.py Normal file
View File

@ -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)