forked from niceberginc/agentipy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (46 loc) · 1.35 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 setuptools import find_packages, setup
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="agentipy",
version="1.2.6",
author="Utilify",
author_email="hello@getutilify.com",
description="A Python toolkit for Solana agents",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/niceberginc/agentipy",
packages=find_packages(),
python_requires=">=3.7",
install_requires=[
"requests==2.32.3",
"python-dotenv==1.0.1",
"numpy==1.22.4,<2",
"base58>=2.1.1",
"aiohttp>=3.11.10",
"pillow>=11.0.0",
"openai>=1.58.1",
"solana>=0.35.0",
"solders>=0.21.0,<0.24.0",
"pydantic>=2.10.4",
"langchain>=0.3.12",
"anchorpy>=0.20.1"
],
extras_require={
"dev": [
"pytest==8.3.4",
"black==24.10.0",
"isort>=5.10.0",
]
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
include_package_data=True,
project_urls={
"Bug Tracker": "https://github.com/niceberginc/agentipy/issues",
"Documentation": "https://github.com/niceberginc/agentipy#readme",
},
)