Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
python-rndc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ISC Open Source Projects
python-rndc
Commits
3f0b54ba
Commit
3f0b54ba
authored
May 09, 2018
by
Matthew Pounsett
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
setup README and other remaining classifiers and metadata
parent
4e7b8b57
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
22 additions
and
9 deletions
+22
-9
README.md
README.md
+1
-1
rndc.py
rndc.py
+2
-0
setup.py
setup.py
+19
-8
No files found.
README
→
README
.md
View file @
3f0b54ba
RNDC Protocol Library
#
RNDC Protocol Library
This library implements the RNDC protocol natively in Python, to allow direct
control of BIND instances from within your Python programs.
rndc.py
View file @
3f0b54ba
...
...
@@ -22,6 +22,8 @@ import base64
import
random
import
socket
__version__
=
"0.1.0"
class
rndc
(
object
):
"""RNDC protocol client library"""
...
...
setup.py
View file @
3f0b54ba
"""
Pyth
i
n RNDC protocol library
Pyth
o
n RNDC protocol library
A native python library that implements the RNDC protocol.
"""
from
setuptools
import
setup
,
find_packages
from
setuptools
import
setup
from
codecs
import
open
from
os
import
path
from
rndc
import
__version__
here
=
path
.
abspath
(
path
.
dirname
(
__file__
))
with
open
(
path
.
join
(
here
,
'README.md'
),
encoding
=
'utf-8'
)
as
f
:
long_description
=
f
.
read
()
setup
(
name
=
"rndc"
,
version
=
"0.0.1"
,
version
=
__version__
,
description
=
"RNDC Protocol Library"
,
long_description
=
__doc__
,
long_description
=
long_description
,
long_description_content_type
=
'text/markdown'
,
keywords
=
"library DNS RNDC BIND"
,
author
=
""
,
author_email
=
""
,
author
=
"Internet Systems Consortium"
,
license
=
"MPL 2.0"
,
url
=
"https://gitlab.isc.org/isc-projects/python-rndc"
,
classifiers
=
[
'Development Status :: 4 - Beta'
,
...
...
@@ -26,11 +38,10 @@ setup(
'Programming Language :: Python :: 2.7'
,
'Topic :: Internet :: Name Service (DNS)'
,
'Topic :: Software Development :: Libraries'
,
'Topic :: System :: Networking'
,
'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)'
,
],
p
ackages
=
find_packages
()
,
p
y_modules
=
[
'rndc'
]
,
install_requires
=
[],
data_files
=
[(
""
,
[
"COPYRIGHT"
])]
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment