-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
21 lines (20 loc) · 930 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import os
from setuptools import setup
setup(
name = "django-dynamic-dns",
version = "0.1.4",
author = "Damian Moore",
author_email = "[email protected]",
description = ("Machines on dynamic IPs can call this service at regular intervals (e.g. via cron) and when the server notices an address change it makes the relevant API call to update the DNS provider. Alternatively a simple DNS server is included which can be run instead of using an external DNS provider."),
license = "BSD",
keywords = "django dynamic dns server ip domain service",
url = "https://github.com/damianmoore/django-dynamic-dns",
download_url = 'https://github.com/damianmoore/django-dynamic-dns/archive/0.1.4.zip',
packages = [
'dynamicdns',
'dynamicdns.management',
'dynamicdns.management.commands',
'dynamicdns.migrations',
'dynamicdns.plugins',
],
)