-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
35 lines (31 loc) · 1.14 KB
/
setup.py
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
30
31
32
33
34
35
from setuptools import setup, find_namespace_packages
def readme():
with open('README.md', encoding='utf-8') as f:
content = f.read()
return content
setup(
name="dsxquant", # 包名称
version="2.1.1", # 版本号
author="fangyunsm", # 作者
author_email="[email protected]", # 作者邮箱
description="Dsxquant 是一个基于python语言开发的的量化工具箱,主要特征是其工具属性,专为上层策略应用提供服务。", # 描述
long_description=readme(), # 长文描述
keywords="quant 量化", # 项目关键词
url="https://github.com/dsxkline/dsx_quant_python", # 项目主页
license="MIT License", # 许可证
# packages=find_namespace_packages('pydsxkline'),
zip_safe=False,
packages=['dsxquant'],
package_dir={"dsxquant": "src/dsxquant"},
include_package_data=True,
# package_data={"": ['*.py', '*.js', '*.html']},
install_requires=[
'dsxindexer>=1.0.0',
'Flask==2.3.2',
'numpy==1.23.4',
'pandas==1.5.1',
'prettytable==3.7.0',
'progressbar33==2.4',
],
python_requires='>=3.6,<4'
)