-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.py
48 lines (45 loc) · 1.46 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
from pathlib import Path
from setuptools import find_packages
from setuptools import setup
DOCS_PATH = Path(__file__).parents[0] / "docs/README.md"
PATH = Path("README.md")
if not PATH.exists():
with Path.open(DOCS_PATH, encoding="utf-8") as f1:
with Path.open(PATH, "w+", encoding="utf-8") as f2:
f2.write(f1.read())
setup(
name="bing-chat",
version="1.9.4",
license="MIT",
author="Zack Bradshaw",
author_email="[email protected]",
description="Bing-Chat-API",
packages=find_packages("src"),
package_dir={"": "src"},
url="https://github.com/Agora-X/Bing-Chat-API",
project_urls={"Bug Report": "https://github.com/Agora-X/Bing-Chat-API/issues/new"},
entry_points={
"console_scripts": [
# Update these with your actual console scripts
"bing-chat = BingChat.main:main",
],
},
install_requires=[
"aiohttp",
"BingImageCreator",
"certifi",
"httpx",
"prompt_toolkit",
"requests",
"rich",
],
long_description=Path.open(PATH, encoding="utf-8").read(),
long_description_content_type="text/markdown",
py_modules=["BingChat"], # Update this with your actual Python modules
classifiers=[
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Programming Language :: Python :: 3.6",
],
)