代码拉取完成,页面将自动刷新
同步操作将从 bopo/mootdx 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
#!/usr/bin/env python
"""The setup script."""
try:
from setuptools import find_packages, setup
except ImportError:
from distutils.core import find_packages, setup
def parse_requirements(filename):
line_iter = (line.strip() for line in open(filename))
return [line for line in line_iter if line and not line.startswith('#')]
with open('README.rst', encoding='utf-8') as readme_file:
readme = readme_file.read()
with open('HISTORY.rst', encoding='utf-8') as history_file:
history = history_file.read()
requirements = parse_requirements('requirements.txt')
test_requirements = requirements
test_requirements.append('pytest')
setup(
name='mootdx',
version='0.8.10',
description='通达信数据读取接口.',
long_description=readme,
author='bopo.wang',
author_email='ibopo@126.com',
url='https://github.com/mootdx/mootdx',
packages=find_packages(include=['mootdx', 'mootdx.*']),
# include_package_data=True,
install_requires=requirements,
license='MIT license',
zip_safe=False,
keywords='mootdx',
entry_points={
'console_scripts': [
'mootdx=mootdx.__main__:entry',
]
},
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
test_suite='tests',
tests_require=test_requirements,
setup_requires=requirements,
)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。