forked from JarbasHiveMind/ZZZ-HiveMind-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (30 loc) · 1.1 KB
/
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
from setuptools import setup
setup(
name='jarbas_hive_mind',
version='0.10.8',
packages=['jarbas_hive_mind',
'jarbas_hive_mind.nodes',
'jarbas_hive_mind.configuration',
'jarbas_hive_mind.database',
'jarbas_hive_mind.utils',
'jarbas_hive_mind.discovery',
# below are deprecated, backwards compat only
'jarbas_hive_mind.master',
'jarbas_hive_mind.slave'],
include_package_data=True,
install_requires=["pyopenssl",
"service_identity",
"autobahn",
"twisted",
"mycroft-messagebus-client>=0.9.1",
"ovos_utils>=0.0.6",
"json_database>=0.2.6",
"pycryptodomex",
"zeroconf>=0.1.6",
"upnpclient>=0.0.8"],
url='https://github.com/JarbasAl/hive_mind',
license='MIT',
author='jarbasAI',
author_email='[email protected]',
description='Mesh Networking utilities for mycroft core'
)