attix 0.1.0__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.
attix/__init__.py ADDED
@@ -0,0 +1,46 @@
1
+ #!/usr/bin/env python3
2
+ """Top-level package for attix."""
3
+ # Core Library modules
4
+ import logging.config
5
+ from importlib.metadata import version
6
+
7
+ # Third party modules
8
+ import yaml # type: ignore
9
+
10
+ __version__ = version("attix")
11
+
12
+ LOGGING_CONFIG = """
13
+ version: 1
14
+ disable_existing_loggers: False
15
+ handlers:
16
+ console:
17
+ class: logging.StreamHandler
18
+ level: DEBUG
19
+ stream: ext://sys.stdout
20
+ formatter: basic
21
+ file:
22
+ class: logging.handlers.RotatingFileHandler
23
+ level: DEBUG
24
+ filename: logs/log.txt
25
+ maxBytes: 1048576 # 1MB
26
+ backupCount: 3 # keeps log.txt, log.txt.1, log.txt.2, log.txt.3
27
+ formatter: timestamp
28
+ encoding: utf-8
29
+
30
+ formatters:
31
+ basic:
32
+ style: "{"
33
+ format: "{message:s}"
34
+ timestamp:
35
+ style: "{"
36
+ format: "{asctime} - {levelname} - {filename}:{lineno} - {message}"
37
+
38
+ loggers:
39
+ init:
40
+ handlers: [console, file]
41
+ level: DEBUG
42
+ propagate: False
43
+ """
44
+
45
+ logging.config.dictConfig(yaml.safe_load(LOGGING_CONFIG))
46
+ logger = logging.getLogger("init")
attix/attix.py ADDED
@@ -0,0 +1,87 @@
1
+ #!/usr/bin/env python3
2
+ """Example script to demonstrate layout and testing."""
3
+ # Core Library modules
4
+ import sys
5
+ from typing import Any
6
+
7
+ # Third party modules
8
+
9
+ # Local modules
10
+ from . import logger
11
+
12
+
13
+
14
+
15
+
16
+
17
+ def handle_exception(exc_type, exc_value, exc_traceback): # type: ignore
18
+ if issubclass(exc_type, KeyboardInterrupt):
19
+ sys.__excepthook__(exc_type, exc_value, exc_traceback)
20
+ return
21
+ logger.error("Uncaught exception", exc_info=(exc_type, exc_value, exc_traceback))
22
+
23
+ sys.excepthook = handle_exception
24
+
25
+
26
+ def fizzbuzz(number_range: int) -> list:
27
+
28
+ """Demonstrate one solution to the FizzBuzz problem.
29
+
30
+ Args:
31
+ number_range (int): The maximum number that will be used
32
+
33
+ Returns:
34
+ list: The result will be returned as a list
35
+
36
+ Examples:
37
+ >>> fizzbuzz(20)
38
+ """
39
+ result: list[Any] = []
40
+ for num in range(1, number_range):
41
+ if num % 15 == 0:
42
+ result.append("FizzBuzz")
43
+ elif num % 5 == 0:
44
+ result.append("Buzz")
45
+ elif num % 3 == 0:
46
+ result.append("Fizz")
47
+ else:
48
+ result.append(num)
49
+ logger.debug(f'fizzbuzz result: {result}')
50
+ return result
51
+
52
+
53
+ def fibonacci(number_range: int) -> list:
54
+
55
+ """series of numbers in which each number is the sum of the two that precede it.
56
+
57
+ Args:
58
+ number_range (int): The maximum number that will be used
59
+
60
+ Returns:
61
+ list: The result will be returned as a list
62
+
63
+ Examples:
64
+ >>> fibonacci(20)
65
+ """
66
+
67
+ result: list = []
68
+ a, b = 1, 1
69
+ while True:
70
+ if a >= number_range:
71
+ logger.debug(f'fibonacci result: {result}')
72
+ return result
73
+ result.append(a)
74
+ a, b = b, (a + b)
75
+
76
+
77
+ def main(): # type: ignore
78
+ print(fizzbuzz(20))
79
+ print(fibonacci(20))
80
+
81
+
82
+ if __name__ == '__main__':
83
+ raise SystemExit(main())
84
+
85
+
86
+
87
+
attix/attix_cli.py ADDED
@@ -0,0 +1,24 @@
1
+ #!/usr/bin/env python3
2
+ """Example CLI module using click package."""
3
+
4
+
5
+ # Third party modules
6
+ import click
7
+
8
+
9
+ @click.group()
10
+ def info() -> None:
11
+ """Create a container to which other commands can be attached."""
12
+
13
+
14
+ @info.command(help="Display Author Name")
15
+ @click.option("-verbose", "--verbose", is_flag=True, help="set the verbosity")
16
+ def author(verbose: str) -> None:
17
+ """Returns details about the Author."""
18
+ click.echo("Author name: Stephen R A King")
19
+ if verbose:
20
+ click.echo("Author eMail: sking.github@gmail.com")
21
+
22
+
23
+ if __name__ == "__main__":
24
+ raise SystemExit(info())
File without changes
@@ -0,0 +1,365 @@
1
+ Metadata-Version: 2.4
2
+ Name: attix
3
+ Version: 0.1.0
4
+ Summary: store filenames of a remote NAS device for searching
5
+ Author-email: Stephen R A King <sking.github@gmail.com>
6
+ Maintainer-email: Stephen R A King <sking.github@gmail.com>
7
+ License-Expression: MIT
8
+ Project-URL: Homepage, https://github.com/Stephen-RA-King/attix
9
+ Project-URL: Download, https://github.com/Stephen-RA-King/attix/archive/refs/heads/main.zip
10
+ Project-URL: Documentation, https://attix.readthedocs.io/en/latest/
11
+ Project-URL: CI, https://github.com/Stephen-RA-King/attix/actions
12
+ Project-URL: Release Notes, https://github.com/Stephen-RA-King/attix/releases
13
+ Project-URL: Source Code, https://github.com/Stephen-RA-King/attix/
14
+ Project-URL: Bug Tracker, https://github.com/Stephen-RA-King/attix/issues
15
+ Keywords: utility
16
+ Classifier: Development Status :: 1 - Planning
17
+ Classifier: Environment :: Console
18
+ Classifier: Intended Audience :: Developers
19
+ Classifier: Operating System :: OS Independent
20
+ Classifier: Natural Language :: English
21
+ Classifier: Programming Language :: Python :: 3
22
+ Classifier: Programming Language :: Python :: 3 :: Only
23
+ Classifier: Programming Language :: Python :: 3.10
24
+ Classifier: Programming Language :: Python :: 3.11
25
+ Classifier: Programming Language :: Python :: 3.12
26
+ Classifier: Programming Language :: Python :: 3.13
27
+ Classifier: Programming Language :: Python :: 3.14
28
+ Requires-Python: >=3.10
29
+ Description-Content-Type: text/markdown
30
+ License-File: LICENSE
31
+ License-File: AUTHORS.md
32
+ Requires-Dist: pyyaml
33
+ Dynamic: license-file
34
+
35
+ # attix
36
+
37
+ > Short blurb about what your product does.
38
+
39
+ [![PyPI][pypi-image]][pypi-url]
40
+ [![Downloads][downloads-image]][downloads-url]
41
+ [![Status][status-image]][pypi-url]
42
+ [![Python Version][python-version-image]][pypi-url]
43
+ [![tests][tests-image]][tests-url]
44
+ [![Codecov][codecov-image]][codecov-url]
45
+ [![CodeQl][codeql-image]][codeql-url]
46
+ [![Docker][docker-image]][docker-url]
47
+ [![pre-commit][pre-commit-image]][pre-commit-url]
48
+ [![pre-commit.ci status][pre-commit.ci-image]][pre-commit.ci-url]
49
+ [![readthedocs][readthedocs-image]][readthedocs-url]
50
+ [![CodeFactor][codefactor-image]][codefactor-url]
51
+ [![Codeclimate][codeclimate-image]][codeclimate-url]
52
+ [![Imports: isort][isort-image]][isort-url]
53
+ [![Code style: black][black-image]][black-url]
54
+ [![Checked with mypy][mypy-image]][mypy-url]
55
+ [![security: bandit][bandit-image]][bandit-url]
56
+ [![Commitizen friendly][commitizen-image]][commitizen-url]
57
+ [![Conventional Commits][conventional-commits-image]][conventional-commits-url]
58
+ [![Versioning][versioning-image]][versioning-url]
59
+ [![DeepSource][deepsource-image]][deepsource-url]
60
+ [![license][license-image]][license-url]
61
+ [![Pydough][pydough-image]][pydough-url]
62
+ [![OpenSSFScorecard][openssf-image]][openssf-url]
63
+
64
+ One to two paragraph statement about your product and what it does.
65
+
66
+ ![](assets/header_dough1.png)
67
+
68
+
69
+ # Contents
70
+
71
+ - [Demo](#-demo)
72
+ - [Project rationale](#-project-rationale)
73
+ - [Quick start](#-quickstart)
74
+ - [Prerequisites](#-prerequisites)
75
+ - [Installation](#-installation)
76
+ - [Basic Usage](#-basic-usage)
77
+ - [Usage](#-usage)
78
+ - [Development setup](#-development-setup)
79
+ - [Configuration](#-configuration)
80
+ - [Documentation](#-documentation)
81
+ - [Read the Docs](https://pynamer.readthedocs.io/en/latest/)
82
+ - [API](https://pynamer.readthedocs.io/en/latest/autoapi/pynamer/pynamer/index.html)
83
+ - [Wiki](https://github.com/Stephen-RA-King/pynamer/wiki)
84
+ - [FAQs](#-faqs)
85
+ - [What's new in version x.x](#-whats-new-in-version-xx)
86
+ - [Planned future enhancements](#-planned-future-enhancements)
87
+ - [Package statistics](#-package-statistics)
88
+ - [License](#-license)
89
+ - [Meta information](#ℹ-meta)
90
+
91
+
92
+ ## :eyeglasses: TLDR
93
+
94
+ A very succinct paragraph summary regarding the package purpose and operation.
95
+
96
+
97
+ # :film_projector: Demo
98
+
99
+ ---
100
+
101
+ Put a demo animated gif here.
102
+
103
+
104
+ # :bulb: Project rationale
105
+
106
+ ---
107
+
108
+ Why I built this project
109
+
110
+
111
+
112
+
113
+ # :rocket: Quickstart
114
+
115
+ ---
116
+
117
+ Explain succinctly how to use the repository
118
+
119
+ ## :spiral_notepad: Prerequisites
120
+
121
+ - A bulleted list of requirements
122
+
123
+
124
+ ## :floppy_disk: Installation
125
+
126
+
127
+ OS X & Linux:
128
+
129
+ ```sh
130
+ pip3 install attix
131
+ ```
132
+
133
+ Windows:
134
+
135
+ ```sh
136
+ pip install attix
137
+ ```
138
+
139
+ ## :computer: Basic Usage
140
+
141
+ A simple example demonstrating that the package is working
142
+
143
+
144
+ # :computer: Usage
145
+
146
+ ---
147
+
148
+ A few motivating and useful examples of how your product can be used. Spice this up with code blocks and potentially more screenshots.
149
+
150
+ _For more examples and usage, please refer to the [Wiki][wiki]._
151
+
152
+ # :wrench: Development setup
153
+
154
+ ---
155
+
156
+ Describe how to install all development dependencies and how to run an automated test-suite of some kind. Potentially do this for multiple platforms.
157
+
158
+ ```sh
159
+ pip install --editable attix
160
+ ```
161
+
162
+ # :gear: Configuration
163
+
164
+ ---
165
+
166
+ Place configuration information here
167
+
168
+
169
+ # :lock: Security Considerations
170
+
171
+ ---
172
+
173
+ Write any security concerns that you may have here.
174
+ e.g. exposure of API keys, passwords, old modules etc.
175
+
176
+
177
+ # :books: Documentation
178
+
179
+ ---
180
+
181
+ [**Read the Docs**](https://attix.readthedocs.io/en/latest/)
182
+
183
+ - [**Example Usage**](https://attix.readthedocs.io/en/latest/example.html)
184
+ - [**Credits**](https://attix.readthedocs.io/en/latest/example.html)
185
+ - [**Changelog**](https://attix.readthedocs.io/en/latest/changelog.html)
186
+ - [**API Reference**](https://attix.readthedocs.io/en/latest/autoapi/index.html)
187
+
188
+
189
+ [**Wiki**](https://github.com/Stephen-RA-King/attix/wiki)
190
+
191
+ # :dna: Design Considerations
192
+
193
+ ---
194
+
195
+ A few paragraphs on the design considerations if required.
196
+
197
+ # :whale: Using Docker
198
+
199
+ ---
200
+
201
+ ## Building the Image from Dockerfile
202
+
203
+ Start your docker runtime then:
204
+
205
+ Build the image using ***docker build*** command. e.g.
206
+
207
+
208
+ ```shell
209
+ $ docker build -t sraking/attix:0.1.0 -t sraking/attix:latest .
210
+ ```
211
+
212
+ Once built, run the image using the ***docker run*** command. This will create the container. e.g.
213
+
214
+ ```shell
215
+ $ docker run -it sraking/attix:0.1.0 /bin/bash
216
+ ```
217
+
218
+ Optional: The image can now be pushed to the repository using the ***docker push*** command. e.g.
219
+
220
+ ```shell
221
+ $ docker push sraking/attix:0.1.0
222
+ ```
223
+
224
+ ## Using the ready built image on dockerhub
225
+
226
+ Pull the latest image from the repository using the ***docker pull*** command. e.g.
227
+
228
+ ```bash
229
+ ~ $ docker pull sraking/attix
230
+ ```
231
+
232
+ Now run the image using the ***docker run*** command. This will create the container. e.g.
233
+
234
+ ```bash
235
+ ~ $ docker run -it sraking/attix /bin/bash
236
+ ```
237
+
238
+ Use the command line as normal in the container.
239
+
240
+ ```bash
241
+ root@4d315992ca28:/app# attix -h
242
+ ```
243
+
244
+ # :warning: Limitations
245
+
246
+ ---
247
+
248
+ Describe any limitation the application may have (if any).
249
+
250
+ # :interrobang: Some Quirks
251
+
252
+ ---
253
+
254
+ The reason I wrote this application in the first place.
255
+
256
+
257
+ ## :question: FAQs
258
+
259
+ ---
260
+
261
+ Give examples of frequently asked questions
262
+
263
+
264
+ # :newspaper: What's new in version x.x
265
+
266
+ ---
267
+
268
+ - bulleted list of new features
269
+
270
+ # :calendar: Planned future enhancements
271
+
272
+ ---
273
+
274
+ - Feature 1
275
+ - Feature 2
276
+
277
+
278
+ # :bar_chart: Package statistics
279
+
280
+ ---
281
+
282
+ - [**libraries.io**](https://libraries.io/pypi/Stephen-RA-King)
283
+ - [**PyPI Stats**](https://pypistats.org/packages/Stephen-RA-King)
284
+ - [**Pepy**](https://www.pepy.tech/projects/Stephen-RA-King)
285
+
286
+
287
+ # :scroll: License
288
+
289
+ ---
290
+
291
+ Distributed under the MIT license. See [![][license-image]][license-url] for more information.
292
+
293
+
294
+
295
+ # < :information_source: > Meta
296
+
297
+ ---
298
+
299
+ [![](assets/linkedin.png)](https://www.linkedin.com/in/sr-king)
300
+ [![](assets/github.png)](https://github.com/Stephen-RA-King)
301
+ [![](assets/pypi.png)](https://pypi.org/project/attix)
302
+ [![Docker](assets/docker.png)](https://hub.docker.com/r/sraking/attix)
303
+ [![](assets/www.png)](https://stephen-ra-king.github.io/justpython/)
304
+ [![](assets/email2.png)](mailto:sking.github@gmail.com)
305
+ [![](assets/github.png)](https://github.com/Stephen-RA-King/attix)
306
+
307
+
308
+ Author: Stephen R A King ([sking.github@gmail.com](mailto:sking.github@gmail.com))
309
+
310
+ Created with Cookiecutter template: [![pydough][pydough-image]][pydough-url]
311
+
312
+ Digital object identifier: [![DOI](https://zenodo.org/badge/xxxxxxxxx.svg)](https://zenodo.org/badge/latestdoi/xxxxxxxxx)
313
+
314
+
315
+ <!-- Markdown link & img dfn's -->
316
+
317
+ [bandit-image]: https://img.shields.io/badge/security-bandit-yellow.svg
318
+ [bandit-url]: https://github.com/PyCQA/bandit
319
+ [black-image]: https://img.shields.io/badge/code%20style-black-000000.svg
320
+ [black-url]: https://github.com/psf/black
321
+ [codeclimate-image]: https://api.codeclimate.com/v1/badges/7fc352185512a1dab75d/maintainability
322
+ [codeclimate-url]: https://codeclimate.com/github/Stephen-RA-King/attix/maintainability
323
+ [codecov-image]: https://codecov.io/gh/Stephen-RA-King/attix/branch/main/graph/badge.svg
324
+ [codecov-url]: https://app.codecov.io/gh/Stephen-RA-King/attix
325
+ [codefactor-image]: https://www.codefactor.io/repository/github/Stephen-RA-King/attix/badge
326
+ [codefactor-url]: https://www.codefactor.io/repository/github/Stephen-RA-King/attix
327
+ [codeql-image]: https://github.com/Stephen-RA-King/attix/actions/workflows/github-code-scanning/codeql/badge.svg
328
+ [codeql-url]: https://github.com/Stephen-RA-King/attix/actions/workflows/github-code-scanning/codeql
329
+ [commitizen-image]: https://img.shields.io/badge/commitizen-friendly-brightgreen.svg
330
+ [commitizen-url]: http://commitizen.github.io/cz-cli/
331
+ [conventional-commits-image]: https://img.shields.io/badge/Conventional%20Commits-1.0.0-yellow.svg?style=flat-square
332
+ [conventional-commits-url]: https://conventionalcommits.org
333
+ [deepsource-image]: https://app.deepsource.com/gh/Stephen-RA-King/attix.svg/?label=active+issues&show_trend=true
334
+ [deepsource-url]: https://app.deepsource.com/gh/Stephen-RA-King/attix/?ref=repository-badge
335
+ [docker-image]: https://github.com/Stephen-RA-King/attix/actions/workflows/docker-image.yml/badge.svg
336
+ [docker-url]: https://github.com/Stephen-RA-King/attix/actions/workflows/docker-image.yml
337
+ [downloads-image]: https://static.pepy.tech/personalized-badge/attix?period=total&units=international_system&left_color=black&right_color=orange&left_text=Downloads
338
+ [downloads-url]: https://pepy.tech/project/attix
339
+ [format-image]: https://img.shields.io/pypi/format/attix
340
+ [isort-image]: https://img.shields.io/badge/%20imports-isort-%231674b1?style=flat&labelColor=ef8336
341
+ [isort-url]: https://github.com/pycqa/isort/
342
+ [license-image]: https://img.shields.io/pypi/l/attix
343
+ [license-url]: https://github.com/Stephen-RA-King/attix/blob/main/LICENSE
344
+ [mypy-image]: http://www.mypy-lang.org/static/mypy_badge.svg
345
+ [mypy-url]: http://mypy-lang.org/
346
+ [openssf-image]: https://api.securityscorecards.dev/projects/github.com/Stephen-RA-King/attix/badge
347
+ [openssf-url]: https://api.securityscorecards.dev/projects/github.com/Stephen-RA-King/attix
348
+ [pre-commit-image]: https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white
349
+ [pre-commit-url]: https://github.com/pre-commit/pre-commit
350
+ [pre-commit.ci-image]: https://results.pre-commit.ci/badge/github/Stephen-RA-King/attix/main.svg
351
+ [pre-commit.ci-url]: https://results.pre-commit.ci/latest/github/Stephen-RA-King/attix/main
352
+ [pydough-image]: https://img.shields.io/badge/Cookiecutter-pydough-orange?logo=cookiecutter
353
+ [pydough-url]: https://github.com/Stephen-RA-King/pydough
354
+ [pypi-url]: https://pypi.org/project/attix/
355
+ [pypi-image]: https://img.shields.io/pypi/v/attix.svg
356
+ [python-version-image]: https://img.shields.io/pypi/pyversions/attix
357
+ [readthedocs-image]: https://readthedocs.org/projects/attix/badge/?version=latest
358
+ [readthedocs-url]: https://attix.readthedocs.io/en/latest/?badge=latest
359
+ [status-image]: https://img.shields.io/pypi/status/attix.svg
360
+ [tests-image]: https://github.com/Stephen-RA-King/attix/actions/workflows/tests.yml/badge.svg
361
+ [tests-url]: https://github.com/Stephen-RA-King/attix/actions/workflows/tests.yml
362
+ [versioning-image]: https://img.shields.io/badge/versioning-semver_2-blue
363
+ [versioning-url]: https://semver.org/
364
+ [wiki]: https://github.com/Stephen-RA-King/attix/wiki
365
+
@@ -0,0 +1,11 @@
1
+ attix/__init__.py,sha256=v3eM20Wc-hPUSPBOiLTUwx6V2iPpCQn4yWb8yU3i5Ik,1054
2
+ attix/attix.py,sha256=q2I-dvZOwPcF1fhOhGgBRgGhjmm4bFnYkr2wL3e8sS0,1958
3
+ attix/attix_cli.py,sha256=xnEsPjTL-ftOIHIe-HOitWZNah_BTnMXgRs7NZYPFXY,619
4
+ attix/resources/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
+ attix-0.1.0.dist-info/licenses/AUTHORS.md,sha256=8FkkPj30A8G30xXXg1EgbswbtgawWtC7r-DGK532-P4,172
6
+ attix-0.1.0.dist-info/licenses/LICENSE,sha256=XJKIts4wmJVEw2mxX-iY0xsJnKL38dCST3w2C-XGIrc,1095
7
+ attix-0.1.0.dist-info/METADATA,sha256=E8Ty3LZbMUs7Z46umujyKJ6o1gUddJ2Ii8pbNiLOrkU,12072
8
+ attix-0.1.0.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
9
+ attix-0.1.0.dist-info/entry_points.txt,sha256=OFNJWNTvGkIu1sAE55nOb5YAJQbtuGozTRYaQMYI6qw,43
10
+ attix-0.1.0.dist-info/top_level.txt,sha256=1K3Zg6W0_ZCdfp3gDDiuXplRMgDk7FwV1MUN_w9_VKA,6
11
+ attix-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (82.0.1)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ attix = attix.attix:main
@@ -0,0 +1,13 @@
1
+ # Credits
2
+
3
+ ## Development Lead
4
+
5
+ - Stephen R A King \<sking.github@gmail.com\>
6
+
7
+ ## Maintainer
8
+
9
+ - Stephen R A King \<sking.github@gmail.com\>
10
+
11
+ ## Contributors
12
+
13
+
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026, Stephen R A King
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1 @@
1
+ attix