|
@@ -0,0 +1,141 @@
|
|
|
+"""A setuptools based setup module.
|
|
|
+
|
|
|
+See:
|
|
|
+https://packaging.python.org/en/latest/distributing.html
|
|
|
+https://github.com/pypa/sampleproject
|
|
|
+"""
|
|
|
+
|
|
|
+
|
|
|
+from setuptools import setup, find_packages
|
|
|
+
|
|
|
+from codecs import open
|
|
|
+from os import path
|
|
|
+
|
|
|
+here = path.abspath(path.dirname(__file__))
|
|
|
+
|
|
|
+
|
|
|
+with open(path.join(here, 'README.md'), encoding='utf-8') as f:
|
|
|
+ long_description = f.read()
|
|
|
+
|
|
|
+setup(
|
|
|
+ name='kalliope',
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ version='0.1.0',
|
|
|
+
|
|
|
+ description='Kalliope is a modular always-on voice controlled personal assistant designed for home automation.',
|
|
|
+ long_description=long_description,
|
|
|
+
|
|
|
+
|
|
|
+ url='https://github.com/kalliope-project/kalliope',
|
|
|
+
|
|
|
+
|
|
|
+ author='Kalliope developers',
|
|
|
+ author_email='kalliope@noreply.github.com',
|
|
|
+
|
|
|
+
|
|
|
+ license='MIT',
|
|
|
+
|
|
|
+
|
|
|
+ classifiers=[
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ 'Development Status :: 3 - Alpha',
|
|
|
+
|
|
|
+
|
|
|
+ 'Intended Audience :: Developers',
|
|
|
+ 'Topic :: Software Development :: Build Tools',
|
|
|
+
|
|
|
+
|
|
|
+ 'License :: OSI Approved :: MIT License',
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ 'Programming Language :: Python :: 2',
|
|
|
+ 'Programming Language :: Python :: 2.6',
|
|
|
+ 'Programming Language :: Python :: 2.7',
|
|
|
+ 'Programming Language :: Python :: 3',
|
|
|
+ 'Programming Language :: Python :: 3.3',
|
|
|
+ 'Programming Language :: Python :: 3.4',
|
|
|
+ 'Programming Language :: Python :: 3.5',
|
|
|
+ ],
|
|
|
+
|
|
|
+
|
|
|
+ keywords='voice control assistant',
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ packages=find_packages(exclude=['contrib', 'docs', 'tests']),
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ install_requires=[
|
|
|
+ 'SpeechRecognition==3.4.6',
|
|
|
+ 'markupsafe==0.23',
|
|
|
+ 'pyaudio==0.2.9',
|
|
|
+ 'ansible==2.1.1.0',
|
|
|
+ 'python2-pythondialog==3.4.0',
|
|
|
+ 'jinja==1.2',
|
|
|
+ 'python-crontab==2.1.1',
|
|
|
+ 'cffi==1.8.3',
|
|
|
+ 'pygmail==0.0.5.4',
|
|
|
+ 'pushetta==1.0.15',
|
|
|
+ 'wakeonlan==0.2.2',
|
|
|
+ 'ipaddress==1.0.16',
|
|
|
+ 'pyowm==2.5.0',
|
|
|
+ 'python-twitter==3.1',
|
|
|
+ 'flask==0.11.1',
|
|
|
+ 'Flask-Restful==0.3.5',
|
|
|
+ 'wikipedia==1.4.0',
|
|
|
+ ],
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ extras_require={
|
|
|
+ 'dev': ['check-manifest'],
|
|
|
+ 'test': ['coverage'],
|
|
|
+ },
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ package_data={
|
|
|
+ 'kalliope': [
|
|
|
+ 'brains/*.yml',
|
|
|
+ 'brain.yml',
|
|
|
+ 'settings.yml',
|
|
|
+ 'tasks.yml',
|
|
|
+ 'trigger/snowboy/armv7l/_snowboydetect.so',
|
|
|
+ 'trigger/snowboy/x86_64/_snowboydetect.so',
|
|
|
+ 'trigger/snowboy/resources/*',
|
|
|
+ ],
|
|
|
+ },
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ entry_points={
|
|
|
+ 'console_scripts': [
|
|
|
+ 'kalliope=kalliope:main',
|
|
|
+ ],
|
|
|
+ },
|
|
|
+)
|
|
|
+
|