根本找不到任何发行版,即使我最近发布了这个包

No distributions at all found, even though I recently published the package

各位程序员大家好,

所以最近我一直在做一个我们想开源的项目。这是一个名为 django-push-notifications-manager 的包(是的,我知道这是一个多么不寻常的长名字)。

所以我已经完成了注册和包的上传,但是由于某种原因 pip install django-push-notifications-manager 无法正常工作并且会给出错误:

Downloading/unpacking django-push-notifications-manager
  Could not find any downloads that satisfy the requirement django-push-notifications-manager
Cleaning up...
No distributions at all found for django-push-notifications-manager
Storing debug log for failure in /Users/pauloostenrijk/.pip/pip.log

所以我一直无法通过删除和替换包、删除它、制作新版本来修复它。 None 他们工作了。

我想你们想知道我的 setup.py 是什么,所以特此:

#!/usr/bin/env python
# -*- coding: utf-8 -*-

import os
import sys

import push_notifications


def get_packages(package):
    """
    Return root package and all sub-packages.
    """
    return [dirpath
            for dirpath, dirnames, filenames in os.walk(package)
            if os.path.exists(os.path.join(dirpath, '__init__.py'))]

try:
    from setuptools import setup
except ImportError:
    from distutils.core import setup

version = push_notifications.__version__

if sys.argv[-1] == 'publish':
    os.system('python setup.py sdist upload')
    print("You probably want to also tag the version now:")
    print("  git tag -a %s -m 'version %s'" % (version, version))
    print("  git push --tags")
    sys.exit()

readme = open('README.rst').read()

setup(
    name='django-push-notifications-manager',
    version=version,
    description="""A plug and play package to handle push devices and push notifications for services such as ZeroPush and Urban Airship""",
    long_description=readme,
    author='Paul Oostenrijk',
    author_email='paul@glemma.nl',
    url='https://github.com/glemmaPaul/django-push-notifications-manager',
    packages=get_packages('push_notifications'),
    include_package_data=True,
    install_requires=[
        'django>=1.5.1',
        'requests>=2.5.1'
    ],
    license="BSD",
    zip_safe=False,
    keywords='django-push-notifications-manager',
    classifiers=[
        'Development Status :: 2 - Pre-Alpha',
        'Framework :: Django',
        'Intended Audience :: Developers',
        'License :: OSI Approved :: BSD License',
        'Natural Language :: English',
        'Programming Language :: Python :: 2',
        'Programming Language :: Python :: 2.6',
        'Programming Language :: Python :: 2.7',
        'Programming Language :: Python :: 3',
        'Programming Language :: Python :: 3.3',
    ],
)

希望大家能帮帮我!提前致谢:)

所以在花了很长时间的尝试和弄清楚之后我终于找到了问题所在。

别让我觉得奇怪,但显然 PyPi 的名称有问题 django-push-notifications-manager,我认为可能有 2 个原因:

  • 名字的长度
  • 名字中最多有 2 个破折号

我希望没有人会遇到这个问题,真是头疼!

感谢您的宝贵时间!