| from setuptools import setup, find_packages |
|
|
| |
| try: |
| with open("requirements.txt", "r") as f: |
| REQUIRES = [line.split("#", 1)[0].strip() for line in f if line.strip()] |
| except: |
| print("'requirements.txt' not found!") |
| REQUIRES = list() |
|
|
| setup( |
| name="FinRobot", |
| version="0.1.3", |
| include_package_data=True, |
| author="", |
| author_email="", |
| url="", |
| license="MIT", |
| packages=find_packages(), |
| install_requires=REQUIRES, |
| description="", |
| long_description="""""", |
| classifiers=[ |
| |
| |
| "License :: OSI Approved :: MIT License", |
| "Programming Language :: Python", |
| "Programming Language :: Python :: 3", |
| "Programming Language :: Python :: 3.6", |
| "Programming Language :: Python :: 3.7", |
| "Programming Language :: Python :: 3.8", |
| "Programming Language :: Python :: 3.9", |
| "Programming Language :: Python :: 3.10", |
| "Programming Language :: Python :: 3.11", |
| "Programming Language :: Python :: Implementation :: CPython", |
| "Programming Language :: Python :: Implementation :: PyPy", |
| ], |
| keywords="Financial Large Language Models, AI Agents", |
| platforms=["any"], |
| python_requires=">=3.10, <3.12", |
| ) |
|
|