-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
57 lines (54 loc) · 1.67 KB
/
setup.py
File metadata and controls
57 lines (54 loc) · 1.67 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
"""Setup script for the crypto trading bot."""
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="crypto-trading-bot",
version="1.0.0",
author="Crypto Trading Bot",
description="A comprehensive cryptocurrency trading bot for Binance Futures",
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(),
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Financial and Insurance Industry",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
python_requires=">=3.8",
install_requires=[
"python-binance>=1.0.19",
"websockets>=11.0.3",
"aiohttp>=3.8.5",
"pandas>=2.0.3",
"numpy>=1.24.3",
"ta-lib>=0.4.26",
"scipy>=1.11.1",
"cryptography>=41.0.3",
"pydantic>=2.1.1",
"python-dotenv>=1.0.0",
"pyyaml>=6.0.1",
"structlog>=23.1.0",
],
extras_require={
"dev": [
"pytest>=7.4.0",
"pytest-asyncio>=0.21.1",
"pytest-mock>=3.11.1",
"black>=23.7.0",
"flake8>=6.0.0",
"mypy>=1.5.1",
]
},
entry_points={
"console_scripts": [
"crypto-trading-bot=crypto_trading_bot.main:main",
],
},
)