5

私はWSGIフレームワーク用の新しいPython認証ライブラリに取り組んでおり、python-openidとおそらく他のサードパーティのライブラリも使用したいと考えています。2つのオプションがあります。

  • 内部のサードパーティライブラリのコピーを使用してライブラリを配布します(GITサブモジュールを介して)
  • 私のライブラリのユーザーに、サードパーティライブラリへの依存関係を自分で解決させます

質問は:

Pythonオープンソースプロジェクトにサードパーティのライブラリを組み込むための従来の好ましい方法は何ですか?

4

1 に答える 1

6

推奨される方法は、setuptools / distributionを使用して、 PyPiを介してサードパーティライブラリをダウンロードするプロジェクトのsetup.pyを定義することです。

これが私のプロジェクトの1つからの抜粋です。setup / install / test/extras-requireキーワード引数の使用に注意してください。これはあなたが探しているものです

import distribute_setup
distribute_setup.use_setuptools()

import os
from setuptools import setup, find_packages

# Utility function to read the README file.
# Used for the long_description.  It's nice, because now 1) we have a top level
# README file and 2) it's easier to type in the README file than to put a raw
# string in below ...

def read(fname):
    return open(os.path.join(os.path.dirname(__file__), fname)).read()

setup(
    name='buildboticon',
    version='0.3.2',
    author='Marcus Lindblom',
    author_email='macke@yar.nu',
    description=('A buildbot monitoring utility'),
    license='GPL 3.0',
    keywords='buildbot systemtray pyqt',

    url='http://bitbucket.org/marcusl/buildboticon',
    download_url='http://packages.python.org/buildboticon',

    package_dir={'':'src'},
    packages=find_packages('src', exclude=['*.tests']),
    long_description=read('README'),

    entry_points={
        'setuptools.installation': [
            'eggsecutable = bbicon:main',
        ],
        'gui_scripts': [
            'buildboticon = bbicon:main',
        ]
    },

    setup_requires=[
        'setuptools_hg',
    ],

    tests_require=[
        'unittest2 >= 0.5',
        'mock >= 0.7.0b4',
    ],

    install_requires=[
        'pyyaml >= 0.3',
#        'pyqt >= 4.7'   # PyQt doesn't have anything useful on PyPi :(
    ],

    extras_require={
        'speech':  ['pyspeech >= 1.0'],
#        'phidgets': ['PhidgetsPython >= 2.1.7'],
    },

ここに完全なファイル:https ://bitbucket.org/marcusl/buildboticon/src/5232de5ead73/python/setup.py

于 2013-01-14T10:38:15.240 に答える