-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (20 loc) · 797 Bytes
/
setup.py
File metadata and controls
21 lines (20 loc) · 797 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup, find_packages
setup(name='a00_command',
version='0.0.1',
description="python package for receiving json rpc commands via Firebase",
url="https://github.com/augment00/a00_command",
classifiers=[
'Development Status :: 4 - Beta',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'License :: OSI Approved :: MIT License'
],
author='Paul Harter',
author_email='username: paul, domain: glowinthedark.co.uk',
license="LICENSE",
install_requires=['requests', 'pyrebase', 'raven', 'sounddevice', 'soundfile', 'picamera'],
packages=find_packages('src'),
package_dir={'': 'src'},
include_package_data=True,
zip_safe=False)