123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- """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',
- ],
- },
- )
|