forked from ricky77melo/WorldQuant-Brain-Alpha
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (27 loc) · 660 Bytes
/
setup.py
File metadata and controls
29 lines (27 loc) · 660 Bytes
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
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",
],
)