forked from JarbasHiveMind/ZZZ-HiveMind-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 922 Bytes
/
setup.py
File metadata and controls
27 lines (26 loc) · 922 Bytes
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
from setuptools import setup
setup(
name='jarbas_hive_mind',
version='0.10.6',
packages=['jarbas_hive_mind',
'jarbas_hive_mind.master',
'jarbas_hive_mind.slave',
'jarbas_hive_mind.configuration',
'jarbas_hive_mind.database',
'jarbas_hive_mind.utils',
'jarbas_hive_mind.discovery'],
include_package_data=True,
install_requires=["pyopenssl",
"service_identity",
"autobahn",
"twisted",
"ovos_utils>=0.0.1",
"json_database>=0.2.6",
"pycryptodome",
"upnpclient>=0.0.8"],
url='https://github.com/JarbasAl/hive_mind',
license='MIT',
author='jarbasAI',
author_email='jarbasai@mailfence.com',
description='Mesh Networking utilities for mycroft core'
)