Browse Source

Merge pull request #813 from octodns/setup-tempfile

Remove temporary file write from setup.py
pull/814/head
Ross McFarland 4 years ago
committed by GitHub
parent
commit
2dc5150bd7
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 6 deletions
  1. +0
    -2
      README.md
  2. +1
    -4
      setup.py

+ 0
- 2
README.md View File

@ -7,8 +7,6 @@ code](https://en.wikipedia.org/wiki/Infrastructure_as_Code) OctoDNS provides a s
The architecture is pluggable and the tooling is flexible to make it applicable to a wide variety of use-cases. Effort has been made to make adding new providers as easy as possible. In the simple case that involves writing of a single `class` and a couple hundred lines of code, most of which is translating between the provider's schema and OctoDNS's. More on some of the ways we use it and how to go about extending it below and in the [/docs directory](/docs).
It is similar to [Netflix/denominator](https://github.com/Netflix/denominator).
## Table of Contents
- [DNS as code - Tools for managing DNS across multiple providers](#dns-as-code---tools-for-managing-dns-across-multiple-providers)


+ 1
- 4
setup.py View File

@ -52,10 +52,7 @@ def long_description():
supported_providers = True
continue
buf.write(line)
buf = buf.getvalue()
with open('/tmp/mod', 'w') as fh:
fh.write(buf)
return buf
return buf.getvalue()
setup(


Loading…
Cancel
Save