-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathsetup.py
More file actions
66 lines (62 loc) · 2.02 KB
/
setup.py
File metadata and controls
66 lines (62 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
63
64
65
66
# -*- coding: utf-8 -*-
import sys
from setuptools import setup, find_packages
# Avoids IDE errors, but actual version is read from version.py
__version__ = ""
exec(open('agentica/version.py').read())
if sys.version_info < (3, 12):
sys.exit('Sorry, Python >= 3.12 is required.')
with open('README.md', 'r', encoding='utf-8') as f:
readme = f.read()
setup(
name='agentica',
version=__version__,
description='AI Agent SDK',
long_description=readme,
long_description_content_type='text/markdown',
author='XuMing',
author_email='xuming624@qq.com',
url='https://github.com/shibing624/agentica',
license="Apache License 2.0",
zip_safe=False,
python_requires=">=3.12.0",
entry_points={"console_scripts": ["agentica = agentica.cli:main"]},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
keywords='Agentica,Agent Tool,action,agent,agentica',
install_requires=[
"aiofiles",
"httpx",
"loguru",
"beautifulsoup4",
"openai",
"python-dotenv",
"pydantic",
"requests",
"sqlalchemy",
"scikit-learn",
"markdownify",
"tqdm",
"rich",
"pyyaml",
"mcp",
"puremagic",
"qdrant-client",
"langfuse",
"python-frontmatter",
],
packages=find_packages(exclude=['tests', 'tests.*', 'examples', 'examples.*', 'docs']),
package_dir={'agentica': 'agentica'},
package_data={'agentica': ['**/*.py', '**/*.md', '**/*.js']},
)