加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 1.46 KB
一键复制 编辑 原始数据 按行查看 历史
Yaman Umuroglu 提交于 2022-05-31 10:55 . add linting and pre-commit hook
# Always prefer setuptools over distutils
# To use a consistent encoding
from setuptools import find_packages, setup
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="PyVerilator",
version="0.4.0",
description="Python interface to Verilator models",
long_description=long_description,
url="https://github.com/csail-csg/pyverilator",
author="CSAIL CSG",
author_email="acwright@mit.edu, bthom@mit.edu",
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"Topic :: System :: Hardware",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
],
keywords="Verilator Wrapper Verilog",
packages=find_packages(exclude=["examples"]),
include_package_data=True,
install_requires=["tclwrapper>=0.0.1"],
setup_requires=["pytest-runner"],
tests_require=["pytest"],
entry_points={
# If we ever want to add an executable script, this is where it goes
},
project_urls={
"Bug Reports": "https://github.com/csail-csg/pyverilator/issues",
"Source": "https://github.com/csail-csg/pyverilator",
},
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化