-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (34 loc) · 1.09 KB
/
setup.py
File metadata and controls
35 lines (34 loc) · 1.09 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
from setuptools import setup, find_packages
import os
setup(
name='yuclaw',
version='1.3.0',
description='YUCLAW — Open Financial Intelligence Platform. Real backtests. ZKP audit. Local AI.',
long_description=open('README_PACKAGE.md').read() if os.path.exists('README_PACKAGE.md') else '',
long_description_content_type='text/markdown',
author='YuClawLab',
url='https://github.com/YuClawLab/yuclaw-brain',
packages=find_packages(),
install_requires=[
'yfinance>=0.2.0',
'pandas>=2.0.0',
'numpy>=1.24.0',
'requests>=2.28.0',
'fastapi>=0.100.0',
'uvicorn>=0.20.0',
'rich>=13.0.0',
],
entry_points={
'console_scripts': [
'yuclaw=yuclaw.cli_v2:main',
],
},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Financial and Insurance Industry',
'Topic :: Office/Business :: Financial :: Investment',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.10',
],
python_requires='>=3.10',
)