web-dev-qa-db-ja.com

setup.pyで複数の作成者/メールを指定する方法

Twitterアプリに小さなラッパーを作成し、この情報を http://pypi.python.org に公開しました。ただし、setup.pyには、作成者の電子メール/名前を指定するための単一のフィールドが含まれています。このパッケージを http://rubygems.org で表示される方法と非常によく似ているため、このパッケージを名前の下に表示したいので、次のフィールドに複数の貢献者/メーリングリストを指定するにはどうすればよいですか。

   author='foo',
   author_email='[email protected]',
67
priya

私の知る限り、setuptoolsは、複数の作成者を指定するための文字列のリストの使用をサポートしていません。あなたの最善の策は、著者を単一の文字列でリストすることです:

author='Foo Bar, Spam Eggs',
author_email='[email protected], [email protected]',

PyPIがauthor_emailフィールドを検証するかどうかはわかりませんので、そのフィールドで問題が発生する可能性があります。いずれにせよ、これらを単一の著者に限定し、ドキュメントまたは説明ですべての貢献者に言及することをお勧めします。

[編集]いくつかのソース:

これは バグとして登録済み でしたが、実際には複数の作成者のサポートが実装されていないようです。 ここ は代替ソリューションです。 ここ は、複数の著者がいるプロジェクトの連絡先メールアドレスを提供する方法のアイデアです。

67
modocache

いくつかの詳細が必要な場合に備えて、@ modocacheの答えを単に便乗しているだけです。

この回答では、python3.6バージョンのFOO-PYTHON-ENV\Lib\distutils\dist.pyファイルを参照します。

繰り返しますが、authorフィールドのリストは使用できません。その理由は次のとおりです。

ネタバレ:DistributionMetadataクラスに属する2つのメソッドが理由です-

def _read_field(name):
    value = msg[name]
    if value == 'UNKNOWN':
        return None
    return value

def _read_list(name):
    values = msg.get_all(name, None)
    if values == []:
        return None
    return values

authorフィールドにリストを貼り付けようとすると、エラーが発生します。

class DistributionMetadata:

#*...(R E D A C T E D)...*#

    def read_pkg_file(self, file):
        """Reads the metadata values from a file object."""
    #*...(R E D A C T E D)...*#
        # ####################################
        # Note the usage of _read_field() here
        # ####################################
        self.name = _read_field('name')
        self.version = _read_field('version')
        self.description = _read_field('summary')
        # we are filling author only.
        self.author = _read_field('author')
        self.maintainer = None
        self.author_email = _read_field('author-email')
        self.maintainer_email = None
        self.url = _read_field('home-page')
        self.license = _read_field('license')
    #*...(R E D A C T E D)...*#
        # ###################################
        # Note the usage of _read_list() here
        # ###################################
        self.platforms = _read_list('platform')
        self.classifiers = _read_list('classifier')
    #*...(R E D A C T E D)...*#

&ここにすべてがあります:

class DistributionMetadata:
        """Dummy class to hold the distribution meta-data: name, version,
        author, and so forth.
        """

        _METHOD_BASENAMES = ("name", "version", "author", "author_email",
                     "maintainer", "maintainer_email", "url",
                     "license", "description", "long_description",
                     "keywords", "platforms", "fullname", "contact",
                     "contact_email", "classifiers", "download_url",
                     # PEP 314
                     "provides", "requires", "obsoletes",
                     )

    def __init__(self, path=None):
        if path is not None:
            self.read_pkg_file(open(path))
        else:
            self.name = None
            self.version = None
            self.author = None
            self.author_email = None
            self.maintainer = None
            self.maintainer_email = None
            self.url = None
            self.license = None
            self.description = None
            self.long_description = None
            self.keywords = None
            self.platforms = None
            self.classifiers = None
            self.download_url = None
            # PEP 314
            self.provides = None
            self.requires = None
            self.obsoletes = None

    def read_pkg_file(self, file):
        """Reads the metadata values from a file object."""
        msg = message_from_file(file)

        def _read_field(name):
            value = msg[name]
            if value == 'UNKNOWN':
                return None
            return value

        def _read_list(name):
            values = msg.get_all(name, None)
            if values == []:
                return None
            return values

        metadata_version = msg['metadata-version']
        self.name = _read_field('name')
        self.version = _read_field('version')
        self.description = _read_field('summary')
        # we are filling author only.
        self.author = _read_field('author')
        self.maintainer = None
        self.author_email = _read_field('author-email')
        self.maintainer_email = None
        self.url = _read_field('home-page')
        self.license = _read_field('license')

        if 'download-url' in msg:
            self.download_url = _read_field('download-url')
        else:
            self.download_url = None

        self.long_description = _read_field('description')
        self.description = _read_field('summary')

        if 'keywords' in msg:
            self.keywords = _read_field('keywords').split(',')

        self.platforms = _read_list('platform')
        self.classifiers = _read_list('classifier')

        # PEP 314 - these fields only exist in 1.1
        if metadata_version == '1.1':
            self.requires = _read_list('requires')
            self.provides = _read_list('provides')
            self.obsoletes = _read_list('obsoletes')
        else:
            self.requires = None
            self.provides = None
            self.obsoletes = None
1
Rob Truxal