Welcome to mirror list, hosted at ThFree Co, Russian Federation.

setup.py « plugins « examples - github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4538e83b88e64ddf7afe1d203fbf6e4a40967566 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from setuptools import setup


setup(
    name='certbot-example-plugins',
    package='certbot_example_plugins.py',
    install_requires=[
        'certbot',
        'zope.interface',
    ],
    entry_points={
        'certbot.plugins': [
            'example_authenticator = certbot_example_plugins:Authenticator',
            'example_installer = certbot_example_plugins:Installer',
        ],
    },
)