1
0
mirror of https://github.com/certbot/certbot.git synced 2025-08-08 04:02:10 +03:00

Merge pull request #7735 from certbot/apache-parser-v2

[Apache v2] Merge apache-parser-v2 feature branch back to master
This commit is contained in:
ohemorange
2020-02-06 15:29:28 -08:00
committed by GitHub
28 changed files with 3174 additions and 107 deletions

View File

@@ -18,6 +18,9 @@ install_requires = [
'zope.interface',
]
dev_extras = [
'apacheconfig>=0.3.1',
]
class PyTest(TestCommand):
user_options = []
@@ -68,6 +71,9 @@ setup(
packages=find_packages(),
include_package_data=True,
install_requires=install_requires,
extras_require={
'dev': dev_extras,
},
entry_points={
'certbot.plugins': [
'apache = certbot_apache._internal.entrypoint:ENTRYPOINT',