-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (27 loc) · 952 Bytes
/
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
from setuptools import setup, find_packages # type: ignore
setup(
name="hvicorn",
version="0.1.3",
description="A simple hack.chat bot framework with type hinting",
long_description=open("README.md", "r").read(),
long_description_content_type="text/markdown",
url="https://github.com/Hiyoteam/hvicorn",
author="0x24a",
author_email="[email protected]",
license="MIT",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
],
keywords="bot hack.chat hack.chat-bot",
packages=find_packages(".", include=["hvicorn", "hvicorn.*"]),
install_requires=[
"websocket-client==1.8.0",
"pydantic==2.7.3",
"setuptools==70.0.0",
"websockets==12.0",
],
)