1 Star 0 Fork 1

郭凯利/python-can-isotp

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 1.12 KB
一键复制 编辑 原始数据 按行查看 历史
from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name = 'can-isotp',
packages = find_packages(exclude=['test']),
version = '1.6',
description = 'Module enabling the IsoTP protocol defined by ISO-15765',
long_description=long_description,
author = 'Pier-Yves Lessard',
author_email = 'py.lessard@gmail.com',
license='MIT',
url = 'https://github.com/pylessard/python-can-isotp',
download_url = 'https://github.com/pylessard/python-can-isotp/archive/v1.6.tar.gz',
keywords = ['isotp', 'can', 'iso-15765', '15765', 'iso15765'],
python_requires='>=3',
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Operating System :: POSIX :: Linux",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator",
],
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/gkl1688/python-can-isotp.git
git@gitee.com:gkl1688/python-can-isotp.git
gkl1688
python-can-isotp
python-can-isotp
master

搜索帮助