-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
31 lines (30 loc) · 977 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
from setuptools import setup, find_namespace_packages
setup(
name="trader-tony",
version="0.1.0",
package_dir={"": "src"},
packages=find_namespace_packages(where="src"),
python_requires=">=3.8",
install_requires=[
"solana==0.30.2",
"solders==0.18.1",
"python-dotenv==1.0.0",
"asyncio>=3.4.3",
"websockets>=11.0.3",
"aiohttp>=3.8.0",
"dataclasses>=0.6",
"typing-extensions>=4.2.0",
"mnemonic>=0.20"
],
description="Solana trading bot with Raydium DEX integration",
author="Tony",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
)