|  | @@ -3,8 +3,6 @@ from os import path
 | 
		
	
		
			
			| 3 | 3 |  from setuptools import setup
 | 
		
	
		
			
			| 4 | 4 |  from setuptools import find_packages
 | 
		
	
		
			
			| 5 | 5 |  
 | 
		
	
		
			
			| 6 |  | -from certbot_pdns.authenticator import Authenticator
 | 
		
	
		
			
			| 7 |  | -
 | 
		
	
		
			
			| 8 | 6 |  install_requires = [
 | 
		
	
		
			
			| 9 | 7 |      'acme',
 | 
		
	
		
			
			| 10 | 8 |      'certbot',
 | 
		
	
	
		
			
			|  | @@ -15,10 +13,12 @@ here = path.abspath(path.dirname(__file__))
 | 
		
	
		
			
			| 15 | 13 |  
 | 
		
	
		
			
			| 16 | 14 |  setup(
 | 
		
	
		
			
			| 17 | 15 |      name='certbot-pdns',
 | 
		
	
		
			
			| 18 |  | -    version="1.0.0",
 | 
		
	
		
			
			|  | 16 | +    version="1.0.1",
 | 
		
	
		
			
			| 19 | 17 |  
 | 
		
	
		
			
			| 20 | 18 |      description="Certbot DNS authenticator",
 | 
		
	
		
			
			| 21 |  | -    long_description=Authenticator.MORE_INFO,
 | 
		
	
		
			
			|  | 19 | +    long_description="""\
 | 
		
	
		
			
			|  | 20 | +Authenticator plugin that performs dns-01 challenge by saving
 | 
		
	
		
			
			|  | 21 | +necessary validation resources to appropriate records in a PowerDNS server.""",
 | 
		
	
		
			
			| 22 | 22 |  
 | 
		
	
		
			
			| 23 | 23 |      url='https://git.rthoni.com/robin.thoni/certbot-pdns',
 | 
		
	
		
			
			| 24 | 24 |      author="Robin Thoni",
 |