-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·63 lines (60 loc) · 2.02 KB
/
setup.py
File metadata and controls
executable file
·63 lines (60 loc) · 2.02 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="keepthink",
version="0.0.12",
author="woldy",
author_email="king@woldy.net",
description="A framework for structured multi-step AI reasoning and task decomposition.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/woldy/keepthink",
packages=setuptools.find_packages(), # 自动发现所有包
include_package_data=True, # 启用清单文件
package_data={
'keepthink': [
'web/static/css/*.css',
'web/static/js/*.js',
'web/templates/*.html',
'prompts/*'
]
},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
python_requires=">=3.6",
install_requires=[
"openai",
"tqdm",
"requests",
"Flask",
"click"
],
extras_require={
"dev": ["pytest", "black", "flake8"], # 仅供开发者使用的依赖
},
entry_points={
'console_scripts': [
'keepthink = keepthink.cli:main'
]
},
license="MIT",
keywords="AI, OpenAI, task decomposition, LLM, automation",
project_urls={
"Documentation": "https://github.com/woldy/keepthink",
"Source": "https://github.com/woldy/keepthink",
"Bug Tracker": "https://github.com/woldy/keepthink/issues",
},
)