1 Star 0 Fork 2

spider/PyTex

forked from 六个骨头/PyTex 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 1.41 KB
一键复制 编辑 原始数据 按行查看 历史
六个骨头 提交于 2021-04-21 19:38 . 修复了部分bug
from setuptools import setup, find_packages
import sys
with open("README.md", "r", encoding='UTF-8') as fh:
long_description = fh.read()
extras = {
'docs': ['sphinx'],
'matrices': ['numpy'],
'matplotlib': ['matplotlib'],
'quantities': ['quantities', 'numpy'],
'testing': ['flake8<3.0.0', 'pep8-naming==0.8.2',
'flake8_docstrings==1.3.0', 'pycodestyle==2.0.0',
'pydocstyle==3.0.0', 'pyflakes==1.2.3', 'nose', 'flake8-putty',
'coverage'],
'convert_to_py2': ['3to2', 'future>=0.15.2'],
}
setup(
name="bone-pytex",
version="0.1.7",
keywords=["LaTex", "MarkDown"],
description="一个用来简化LaTex编写的Python库",
long_description=long_description,
long_description_content_type="text/markdown",
license="GPL-3.0 Licence",
url="https://github.com/tczrr1999/PyTex",
author="六个骨头",
author_email="2742392377@qq.com",
packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Operating System :: OS Independent",
],
include_package_data=True,
platforms="any",
install_requires=['sympy', 'ordered-set', 'mistune'],
extras_require=extras,
scripts=[],
# entry_points={
# 'console_scripts': [
# 'test = test.help:main'
# ]
# }
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/spiderking/PyTex.git
git@gitee.com:spiderking/PyTex.git
spiderking
PyTex
PyTex
master

搜索帮助