forked from MycroftAI/mycroft-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mycroft-base-setup.py
34 lines (29 loc) · 1.06 KB
/
mycroft-base-setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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-core",
version=get_version(),
install_requires=[required('requirements.txt'), 'wifi'],
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.main:main',
'mycroft-wifi-setup-client=mycroft.client.wifisetup.main:main',
'mycroft-skill-container=mycroft.skills.container:main',
'mycroft-cli-client=mycroft.client.text.main:main'
]
}
)