いくつかのライブラリを公開するために pypi を試しています。そこで、単純なプロジェクトから始めました。次の setup.py があります。
import os
from distutils.core import setup
setup(
name='event_amd',
packages = ["event_amd"],
description='Port for EventEmitter from nodejs',
version='1.0.7',
author="Borrey Kim",
author_email="borrey@gmail.com",
url="https://bitbucket.org/borreykim/event_amd",
download_url="https://bitbucket.org/borreykim/event_amd/downloads/event_amd-1.0.6.tar.gz",
keywords=['events'],
long_description = """\
This is an initial step to port over EventEmitter of nodejs. This is done with the goal of having libraries that are cross platform so that cross communication is easier, and collected together.
"""
)
私はそれを登録しましたが: sudo pip install event_amd は私にエラーを与えます:他のプロジェクトにはあるようです): https://pypi.python.org/simple/event_amd/
setup.py で何か間違ったことをしているのか、それとも何が原因なのか疑問に思っていました。
前もって感謝します。