-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
38 lines (34 loc) · 1.16 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import os
from setuptools import find_packages, setup
base = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(base, 'README.rst'), encoding='utf-8') as readme:
README = readme.read()
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='cloudflare-ddns',
version='1.4.0',
description='DDNS script to sync public IP address to CloudFlare dns records',
long_description=README,
url='https://github.com/ailionx/cloudflare-ddns',
author='Shawn Lin',
author_email='[email protected]',
packages=find_packages(exclude=['contrib', 'docs', 'tests*']),
include_package_data=True,
license='MIT',
keywords='cloudflare ddns',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: 3',
],
install_requires=[
'requests'
],
entry_points={
'console_scripts': [
'cloudflare-ddns=cloudflare_ddns.cloudflare:main'
],
}
)