mirror of
https://github.com/AI4Finance-Foundation/FinGPT.git
synced 2024-02-15 23:10:01 +03:00
39 lines
1.3 KiB
Python
39 lines
1.3 KiB
Python
from setuptools import setup, find_packages
|
|
|
|
# Read requirements.txt, ignore comments
|
|
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="FinGPT",
|
|
version="0.0.0",
|
|
include_package_data=True,
|
|
author="Hongyang Yang, Xiao-Yang Liu, Guoxuan Wang",
|
|
author_email="hy2500@columbia.edu",
|
|
url="https://github.com/AI4Finance-Foundation/FinGPT",
|
|
license="MIT",
|
|
packages=find_packages(),
|
|
install_requires=REQUIRES,
|
|
description="FinGPT",
|
|
long_description="""FinGPT""",
|
|
classifiers=[
|
|
# Trove classifiers
|
|
# Full list: https://pypi.python.org/pypi?%3Aaction=list_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 :: Implementation :: CPython",
|
|
"Programming Language :: Python :: Implementation :: PyPy",
|
|
],
|
|
keywords="Financial Large Language Models",
|
|
platforms=["any"],
|
|
python_requires=">=3.6",
|
|
)
|