You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
660 B
29 lines
660 B
from setuptools import setup, find_packages
|
|
|
|
|
|
setup(
|
|
name="Alpha_Tool",
|
|
version="1.0.0",
|
|
author="YourName",
|
|
description="WorldQuant Brain Alpha Generator",
|
|
packages=find_packages(),
|
|
python_requires=">=3.8",
|
|
install_requires=[
|
|
"requests>=2.31.0",
|
|
"pandas>=2.0.0",
|
|
],
|
|
entry_points={
|
|
'console_scripts': [
|
|
'alpha_tool=main:main',
|
|
],
|
|
},
|
|
# 包含非Python文件
|
|
package_data={
|
|
'': ['*.txt', '*.json', '*.ico', '*.png'],
|
|
},
|
|
# 额外信息
|
|
classifiers=[
|
|
"Programming Language :: Python :: 3",
|
|
"Operating System :: OS Independent",
|
|
],
|
|
)
|
|
|