-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 923 Bytes
/
setup.py
File metadata and controls
27 lines (26 loc) · 923 Bytes
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
from setuptools import setup, find_packages
setup(
name="rug-munch-agentkit",
version="1.0.0",
description="Rug Munch Intelligence plugin for Coinbase AgentKit — add rug pull detection to any trading agent",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Rug Munch Intelligence",
author_email="dev@cryptorugmunch.app",
url="https://github.com/CryptoRugMunch/rug-agent-kit",
packages=find_packages(),
install_requires=[
"coinbase-agentkit>=0.2.0",
"requests>=2.31.0",
"pydantic>=2.0.0",
],
python_requires=">=3.10",
license="MIT",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries",
],
)