Files
HiveMind-webchat/setup.py
jarbasal 920f5ba078 HiveMindJs
HiveMindJs
2021-04-19 01:03:26 +01:00

21 lines
560 B
Python

from setuptools import setup
setup(
name='hivemind_webchat',
version='0.2.1',
packages=['hivemind_webchat'],
include_package_data=True,
install_requires=["jarbas_hive_mind>=0.10.7",
"tornado"],
url='https://github.com/JarbasHiveMind/HiveMind-webchat',
license='Apache-2.0',
author='jarbasAI',
author_email='jarbasai@mailfence.com',
description='local hivemind webchat',
entry_points={
'console_scripts': [
'HiveMind-webchat=hivemind_webchat.webchat:main'
]
}
)