1 Star 0 Fork 185

kernelgjs/mootdx

forked from bopo/mootdx 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 1.79 KB
一键复制 编辑 原始数据 按行查看 历史
bopo 提交于 2022-12-05 14:51 . Bump version: 0.9.10 → 0.9.11
#!/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.9.11",
description="通达信数据读取接口.",
long_description=readme,
author="bopo.wang",
author_email="[email protected]",
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",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
test_suite="tests",
tests_require=test_requirements,
setup_requires=requirements,
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/kernelgjs/mootdx.git
[email protected]:kernelgjs/mootdx.git
kernelgjs
mootdx
mootdx
master

搜索帮助