octodns-cloudns 0.0.3__py3-none-any.whl → 0.0.5__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,84 +1,81 @@
1
- Metadata-Version: 2.1
2
- Name: octodns-cloudns
3
- Version: 0.0.3
4
- Summary: ClouDNS API provider for octoDNS
5
- Home-page: https://github.com/octodns/octodns-cloudns
6
- Author: ClouDNS
7
- Author-email: support@cloudns.net
8
- License: MIT
9
- Platform: UNKNOWN
10
- Requires-Python: >=3.6
11
- Description-Content-Type: text/markdown
12
- License-File: LICENSE
13
- Requires-Dist: octodns (>=0.9.17)
14
- Requires-Dist: requests (>=2.27.0)
15
- Provides-Extra: dev
16
- Requires-Dist: black (<24.0.0,>=23.1.0) ; extra == 'dev'
17
- Requires-Dist: build (>=0.7.0) ; extra == 'dev'
18
- Requires-Dist: isort (>=5.11.5) ; extra == 'dev'
19
- Requires-Dist: pyflakes (>=2.2.0) ; extra == 'dev'
20
- Requires-Dist: pytest ; extra == 'dev'
21
- Requires-Dist: pytest-cov ; extra == 'dev'
22
- Requires-Dist: pytest-network ; extra == 'dev'
23
- Requires-Dist: readme-renderer[md] (>=26.0) ; extra == 'dev'
24
- Requires-Dist: requests-mock ; extra == 'dev'
25
- Requires-Dist: twine (>=3.4.2) ; extra == 'dev'
26
- Provides-Extra: test
27
- Requires-Dist: pytest ; extra == 'test'
28
- Requires-Dist: pytest-cov ; extra == 'test'
29
- Requires-Dist: pytest-network ; extra == 'test'
30
- Requires-Dist: requests-mock ; extra == 'test'
31
-
32
- ## ClouDNS API provider for octoDNS
33
-
34
- An [octoDNS](https://github.com/octodns/octodns/) provider that targets ClouDNS.
35
-
36
- ### Installation
37
-
38
- #### Command line
39
-
40
- ```
41
- pip install octodns-cloudns
42
- ```
43
-
44
- #### requirements.txt/setup.py
45
-
46
- Pinning specific versions or SHAs is recommended to avoid unplanned upgrades.
47
-
48
- ##### Versions
49
-
50
- ```
51
- # Start with the latest versions and don't just copy what's here
52
- octodns==0.9.14
53
- octodns-cloudns==0.0.1
54
- ```
55
-
56
- ### Configuration
57
-
58
- ```yaml
59
- providers:
60
- cloudns_account:
61
- class: octodns.provider.cloudns.ClouDNSProvider
62
- auth_id: <api_auth_id>
63
- auth_password: <api_auth_password>
64
- ```
65
-
66
- ### Support Information
67
-
68
- #### GeoDNS records
69
-
70
- ClouDNSProvider suports GeoDNS records
71
-
72
- #### Records
73
-
74
- ClouDNSProvider suports А, AAAA, ALIAS, CAA, CNAME, DNAME, MX, NS, PTR, SPF, SRV, SSHFP, TXT, TLSA, LOC and NAPTR
75
-
76
- #### Dynamic
77
-
78
- ClouDNSProvider does not support dynamic records.
79
-
80
- ### Development
81
-
82
- See the [/script/](/script/) directory for some tools to help with the development process. They generally follow the [Script to rule them all](https://github.com/github/scripts-to-rule-them-all) pattern. Most useful is `./script/bootstrap` which will create a venv and install both the runtime and development related requirements. It will also hook up a pre-commit hook that covers most of what's run by CI.
83
-
84
-
1
+ Metadata-Version: 2.1
2
+ Name: octodns-cloudns
3
+ Version: 0.0.5
4
+ Summary: ClouDNS API provider for octoDNS
5
+ Home-page: https://github.com/octodns/octodns-cloudns
6
+ Author: ClouDNS
7
+ Author-email: support@cloudns.net
8
+ License: MIT
9
+ Requires-Python: >=3.6
10
+ Description-Content-Type: text/markdown
11
+ License-File: LICENSE
12
+ Requires-Dist: octodns>=0.9.17
13
+ Requires-Dist: requests>=2.27.0
14
+ Provides-Extra: dev
15
+ Requires-Dist: pytest; extra == "dev"
16
+ Requires-Dist: pytest-cov; extra == "dev"
17
+ Requires-Dist: pytest-network; extra == "dev"
18
+ Requires-Dist: requests_mock; extra == "dev"
19
+ Requires-Dist: black<24.0.0,>=23.1.0; extra == "dev"
20
+ Requires-Dist: build>=0.7.0; extra == "dev"
21
+ Requires-Dist: isort>=5.11.5; extra == "dev"
22
+ Requires-Dist: pyflakes>=2.2.0; extra == "dev"
23
+ Requires-Dist: readme_renderer[md]>=26.0; extra == "dev"
24
+ Requires-Dist: twine>=3.4.2; extra == "dev"
25
+ Provides-Extra: test
26
+ Requires-Dist: pytest; extra == "test"
27
+ Requires-Dist: pytest-cov; extra == "test"
28
+ Requires-Dist: pytest-network; extra == "test"
29
+ Requires-Dist: requests_mock; extra == "test"
30
+
31
+ ## ClouDNS API provider for octoDNS
32
+
33
+ An [octoDNS](https://github.com/octodns/octodns/) provider that targets ClouDNS.
34
+
35
+ ### Installation
36
+
37
+ #### Command line
38
+
39
+ ```
40
+ pip install octodns-cloudns
41
+ ```
42
+
43
+ #### requirements.txt/setup.py
44
+
45
+ Pinning specific versions or SHAs is recommended to avoid unplanned upgrades.
46
+
47
+ ##### Versions
48
+
49
+ ```
50
+ # Start with the latest versions and don't just copy what's here
51
+ octodns==0.9.14
52
+ octodns-cloudns==0.0.1
53
+ ```
54
+
55
+ ### Configuration
56
+
57
+ ```yaml
58
+ providers:
59
+ cloudns_account:
60
+ class: octodns.provider.cloudns.ClouDNSProvider
61
+ auth_id: <api_auth_id>
62
+ auth_password: <api_auth_password>
63
+ ```
64
+
65
+ ### Support Information
66
+
67
+ #### GeoDNS records
68
+
69
+ ClouDNSProvider suports GeoDNS records
70
+
71
+ #### Records
72
+
73
+ ClouDNSProvider suports А, AAAA, ALIAS, CAA, CNAME, DNAME, MX, NS, PTR, SPF, SRV, SSHFP, TXT, TLSA, LOC and NAPTR
74
+
75
+ #### Dynamic
76
+
77
+ ClouDNSProvider does not support dynamic records.
78
+
79
+ ### Development
80
+
81
+ See the [/script/](/script/) directory for some tools to help with the development process. They generally follow the [Script to rule them all](https://github.com/github/scripts-to-rule-them-all) pattern. Most useful is `./script/bootstrap` which will create a venv and install both the runtime and development related requirements. It will also hook up a pre-commit hook that covers most of what's run by CI.
@@ -0,0 +1,6 @@
1
+ octodns_cloudns/__init__.py,sha256=WjWP6fMEH9Bu3mFFUMSmdQkIEbp6S2qViUwkBrJzGus,28553
2
+ octodns_cloudns-0.0.5.dist-info/LICENSE,sha256=IwGE9guuL-ryRPEKi6wFPI_zOhg7zDZbTYuHbSt_SAk,35823
3
+ octodns_cloudns-0.0.5.dist-info/METADATA,sha256=ZWRqo7Dk9oXoAHeDQUHX-gYu_7gyOWnGzjbBrJBfiwc,2447
4
+ octodns_cloudns-0.0.5.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
5
+ octodns_cloudns-0.0.5.dist-info/top_level.txt,sha256=t-gGz4zcl1yUE6hyw-aaR6KggpKY25v5xwsSJw-zBdY,16
6
+ octodns_cloudns-0.0.5.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.37.1)
2
+ Generator: setuptools (75.6.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,6 +0,0 @@
1
- octodns_cloudns/__init__.py,sha256=hVc17wlwKSIlzJNrzh7w9PYj1KJktpxyqANZMKe7JDY,26920
2
- octodns_cloudns-0.0.3.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
3
- octodns_cloudns-0.0.3.dist-info/METADATA,sha256=dAr73tUR_3gpXbhI1iPFbmqYCZNtkFF6MNyyjvInDJo,2423
4
- octodns_cloudns-0.0.3.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
5
- octodns_cloudns-0.0.3.dist-info/top_level.txt,sha256=t-gGz4zcl1yUE6hyw-aaR6KggpKY25v5xwsSJw-zBdY,16
6
- octodns_cloudns-0.0.3.dist-info/RECORD,,