wangzerui commited on
Commit
38dbfce
·
verified ·
1 Parent(s): 122ef7e

Update setup.py

Browse files
Files changed (1) hide show
  1. setup.py +0 -41
setup.py CHANGED
@@ -1,41 +0,0 @@
1
- from setuptools import setup, find_packages
2
-
3
- # Read requirements.txt, ignore comments
4
- try:
5
- with open("requirements.txt", "r") as f:
6
- REQUIRES = [line.split("#", 1)[0].strip() for line in f if line.strip()]
7
- except:
8
- print("'requirements.txt' not found!")
9
- REQUIRES = list()
10
-
11
- setup(
12
- name="FinRobot",
13
- version="0.1.3",
14
- include_package_data=True,
15
- author="AI4Finance Foundation",
16
- author_email="[email protected]",
17
- url="https://github.com/AI4Finance-Foundation/FinRobot",
18
- license="MIT",
19
- packages=find_packages(),
20
- install_requires=REQUIRES,
21
- description="FinRobot: An Open-Source AI Agent Platform for Financial Applications using LLMs",
22
- long_description="""FinRobot""",
23
- classifiers=[
24
- # Trove classifiers
25
- # Full list: https://pypi.python.org/pypi?%3Aaction=list_classifiers
26
- "License :: OSI Approved :: MIT License",
27
- "Programming Language :: Python",
28
- "Programming Language :: Python :: 3",
29
- "Programming Language :: Python :: 3.6",
30
- "Programming Language :: Python :: 3.7",
31
- "Programming Language :: Python :: 3.8",
32
- "Programming Language :: Python :: 3.9",
33
- "Programming Language :: Python :: 3.10",
34
- "Programming Language :: Python :: 3.11",
35
- "Programming Language :: Python :: Implementation :: CPython",
36
- "Programming Language :: Python :: Implementation :: PyPy",
37
- ],
38
- keywords="Financial Large Language Models, AI Agents",
39
- platforms=["any"],
40
- python_requires=">=3.10, <3.12",
41
- )