fd4e42f0fe
Expand and reorg the naming discussion. Add a section on the mechanics of creating plugins, with some tested example code. Signed-off-by: Doug Hellmann <doug.hellmann@dreamhost.com>
68 lines
1.9 KiB
Python
68 lines
1.9 KiB
Python
#!/usr/bin/env python
|
|
|
|
# Bootstrap installation of Distribute
|
|
import distribute_setup
|
|
distribute_setup.use_setuptools()
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
try:
|
|
long_description = open('README.rst', 'rt').read()
|
|
except IOError:
|
|
long_description = ''
|
|
|
|
install_requires = ['distribute',
|
|
]
|
|
|
|
setup(
|
|
name='stevedore',
|
|
version='0.8',
|
|
|
|
description='Manage dynamic plugins for Python applications',
|
|
long_description=long_description,
|
|
|
|
author='Doug Hellmann',
|
|
author_email='doug.hellmann@dreamhost.com',
|
|
|
|
url='https://github.com/dreamhost/stevedore',
|
|
download_url='https://github.com/dreamhost/stevedore/tarball/master',
|
|
|
|
classifiers=['Development Status :: 3 - Alpha',
|
|
'License :: OSI Approved :: Apache Software License',
|
|
'Programming Language :: Python',
|
|
'Programming Language :: Python :: 2',
|
|
'Programming Language :: Python :: 2.7',
|
|
'Programming Language :: Python :: 3',
|
|
'Programming Language :: Python :: 3.2',
|
|
'Programming Language :: Python :: 3.3',
|
|
'Intended Audience :: Developers',
|
|
'Environment :: Console',
|
|
],
|
|
|
|
platforms=['Any'],
|
|
|
|
scripts=[],
|
|
|
|
provides=['stevedore',
|
|
],
|
|
install_requires=install_requires,
|
|
|
|
namespace_packages=[],
|
|
packages=find_packages(),
|
|
include_package_data=True,
|
|
|
|
entry_points={
|
|
'stevedore.example.formatter': [
|
|
'simple = stevedore.example.simple:Simple',
|
|
'field = stevedore.example.fields:FieldList',
|
|
'plain = stevedore.example.simple:Simple',
|
|
],
|
|
'stevedore.test.extension': [
|
|
't1 = stevedore.tests.test_extension:FauxExtension',
|
|
't2 = stevedore.tests.test_extension:FauxExtension',
|
|
],
|
|
},
|
|
|
|
zip_safe=False,
|
|
)
|