代码拉取完成,页面将自动刷新
同步操作将从 海风/pyctp 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
from setuptools import setup
import os
from os import path as os_path
import shutil
this_directory = os_path.abspath(os_path.dirname(__file__))
# 读取文件内容
def read_file(filename):
with open(os_path.join(this_directory, filename), encoding='utf-8') as f:
desc = f.read()
return desc
# 获取依赖
def read_requirements(filename):
return [line.strip() for line in read_file(filename).splitlines()
if not line.startswith('#')]
# 删除无用文件
for bit in [32,64]:
path = f'./py_ctp/lib{bit}'
for f in os.listdir(path):
if os.path.isdir(f):
continue
if os.path.splitext(f)[1] not in ['.dll', '.so']:
os.remove(f'./py_ctp/lib{bit}/{f}')
long_description = read_file('setup.md')
long_description_content_type = "text/markdown", # 指定包文档格式为markdown
# 生成requirements.txt pipreqs --encoding=utf8 --force py_ctp
# python setup.py sdist & twine upload dist/* //.tar.gz
# python setup.py bdist_wheel & twine upload dist/* //.whl
setup(
name='py_ctp', # 包名
python_requires='>=3.6.0', # python环境
version='2.3.2', # 包的版本
description="Python CTP futures api", # 包简介,显示在PyPI上
long_description=long_description, # 读取的Readme文档内容
long_description_content_type=long_description_content_type, # 指定包文档格式为markdown
author="HaiFeng", # 作者相关信息
author_email='haifengat@vip.qq.com',
url='https://github.com/haifengat/hf_ctp_py_proxy',
# 指定包信息,还可以用find_packages()函数
# packages=find_packages(),
packages=['py_ctp'],
install_requires=read_requirements('requirements.txt'), # 指定需要安装的依赖
include_package_data=True,
license="MIT License",
platforms="any",
data_files=['README.md'],
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。