2024-11-15 22:00:01 -09:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
|
|
from distutils.core import setup
|
|
|
|
|
|
|
|
|
|
setup(name='InvokeDdns',
|
|
|
|
|
version='1.0',
|
|
|
|
|
description='Checks with NearlyFreeSpeech that the dynamic dns entries are right',
|
|
|
|
|
author='Philip Peterson',
|
|
|
|
|
author_email='peterson@sent.com',
|
|
|
|
|
url='https://github.com/philip-peterson/invoke-ddns',
|
|
|
|
|
packages=['invoke_ddns', 'invoke_ddns.command'],
|
|
|
|
|
install_requires=[
|
2024-12-20 00:40:23 -09:00
|
|
|
'tornado>=4.4',
|
2024-12-20 00:58:20 -09:00
|
|
|
'nsfn-ddns==0.2.0'
|
2024-11-15 22:00:01 -09:00
|
|
|
],
|
|
|
|
|
entry_points={
|
|
|
|
|
'console_scripts': [
|
|
|
|
|
'invoke-ddns = invoke_ddns.command:main',
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
)
|