32 lines
867 B
Python
32 lines
867 B
Python
from setuptools import setup
|
|
|
|
from mycroft.util.setup_base import (
|
|
find_all_packages,
|
|
required,
|
|
get_version,
|
|
place_manifest
|
|
)
|
|
|
|
__author__ = 'seanfitz'
|
|
|
|
place_manifest('mycroft-base-MANIFEST.in')
|
|
|
|
setup(
|
|
name="Mycroft",
|
|
version=get_version(),
|
|
install_requires=required('requirements.txt'),
|
|
packages=find_all_packages("mycroft"),
|
|
include_package_data=True,
|
|
|
|
entry_points={
|
|
'console_scripts': [
|
|
'mycroft-speech-client=mycroft.client.speech.main:main',
|
|
'mycroft-messagebus=mycroft.messagebus.service.main:main',
|
|
'mycroft-skills=mycroft.skills.main:main',
|
|
'mycroft-echo-observer=mycroft.messagebus.client.ws:echo',
|
|
'mycroft-audio-test=mycroft.util.audio_test:main',
|
|
'mycroft-enclosure-client=mycroft.client.enclosure.enclosure:main'
|
|
]
|
|
}
|
|
)
|