-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (38 loc) · 949 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
29
30
31
32
33
34
35
36
37
38
39
40
41
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
about = {}
with open(os.path.join(here, "chat_hatenablog", "__version__.py")) as f:
exec(f.read(), about)
setup(
name="chat_hatenablog",
version=about["__version__"],
author="Yuki Shibazaki",
author_email="[email protected]",
description="AI-powered software to interact with your HatenaBlog",
license="MIT",
packages=find_packages(),
install_requires=[
"python-dotenv",
"html2text",
"langchain",
"tqdm",
"openai",
"tenacity",
"tiktoken",
"numpy",
],
extras_require={
"dev": [
"pytest",
"mypy",
"pytest-mypy-plugins",
"types-tqdm",
],
},
entry_points={
"console_scripts": [
"chat-hatenablog = chat_hatenablog.main:main",
]
},
)