1 Star 0 Fork 1

xtdumpling/ldfparser

forked from fhaohao/ldfparser 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 1.56 KB
一键复制 编辑 原始数据 按行查看 历史
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='ldfparser',
author="Balazs Eszes",
author_email="c4deszes@gmail.com",
description="LDF Language support for Python",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/c4deszes/ldfparser",
packages=find_packages(exclude=["tests"]),
package_data={'': ['*.lark']},
license='MIT',
keywords=['LIN', 'LDF'],
install_requires=['lark>=1,<2', 'bitstruct', 'jinja2'],
extras_require={
'dev': [
# Packaging
"setuptools",
"wheel",
"twine",
# Testing
"pytest",
"pytest-cov",
"pytest-benchmark",
"jsonschema",
# Linting
"pylint",
"flake8"
]
},
python_requires='!=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4',
py_modules=['lin', 'parser'],
entry_points={
'console_scripts': ['ldfparser=ldfparser.cli:main']
},
classifiers=[
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
project_urls={
"Documentation": "https://c4deszes.github.io/ldfparser/",
"Source Code": "https://github.com/c4deszes/ldfparser",
}
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/xtdumpling/ldfparser.git
git@gitee.com:xtdumpling/ldfparser.git
xtdumpling
ldfparser
ldfparser
master

搜索帮助