【发布时间】:2021-08-13 20:05:31
【问题描述】:
我有一个名为pyuvm 的包。源文件在pyuvm/pyuvm
当我构建它并将它发送到pypi.org 时,我没有看到任何错误,当我安装它时,我没有看到任何错误,但是site-packages 中没有pyuvm 目录有pyuvm-2.0a3.dist-info 文件。
我有这个setup.cfg:
[metadata]
name = pyuvm
version = 2.0a3
author = Ray Salemi
author_email = ray@raysalemi.com
description = Python implementation of the Universal Verification Methodology (UVM) using cocotb
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/pyuvm/pyuvm
project_urls=
Bug Tracker=https://github.com/pyuvm/pyuvm/issues
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
[options]
packages = find:
python_requires = >=3.6
install_requires =
cocotb >= 1.5.2
[options.packages.find]
where = pyuvm
知道我做错了什么吗?
【问题讨论】:
标签: pypi