cellarr-array 0.0.1__tar.gz

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.

Potentially problematic release.


This version of cellarr-array might be problematic. Click here for more details.

Files changed (43) hide show
  1. cellarr_array-0.0.1/.coveragerc +28 -0
  2. cellarr_array-0.0.1/.github/workflows/publish-pypi.yml +55 -0
  3. cellarr_array-0.0.1/.github/workflows/run-tests.yml +33 -0
  4. cellarr_array-0.0.1/.gitignore +54 -0
  5. cellarr_array-0.0.1/.pre-commit-config.yaml +32 -0
  6. cellarr_array-0.0.1/.readthedocs.yml +27 -0
  7. cellarr_array-0.0.1/AUTHORS.md +3 -0
  8. cellarr_array-0.0.1/CHANGELOG.md +13 -0
  9. cellarr_array-0.0.1/CONTRIBUTING.md +371 -0
  10. cellarr_array-0.0.1/LICENSE.txt +21 -0
  11. cellarr_array-0.0.1/PKG-INFO +161 -0
  12. cellarr_array-0.0.1/README.md +138 -0
  13. cellarr_array-0.0.1/docs/Makefile +29 -0
  14. cellarr_array-0.0.1/docs/_static/.gitignore +1 -0
  15. cellarr_array-0.0.1/docs/authors.md +4 -0
  16. cellarr_array-0.0.1/docs/changelog.md +4 -0
  17. cellarr_array-0.0.1/docs/conf.py +325 -0
  18. cellarr_array-0.0.1/docs/contributing.md +4 -0
  19. cellarr_array-0.0.1/docs/index.md +39 -0
  20. cellarr_array-0.0.1/docs/license.md +5 -0
  21. cellarr_array-0.0.1/docs/readme.md +4 -0
  22. cellarr_array-0.0.1/docs/requirements.txt +9 -0
  23. cellarr_array-0.0.1/pyproject.toml +24 -0
  24. cellarr_array-0.0.1/setup.cfg +76 -0
  25. cellarr_array-0.0.1/setup.py +22 -0
  26. cellarr_array-0.0.1/src/cellarr_array/CellArray.py +236 -0
  27. cellarr_array-0.0.1/src/cellarr_array/DenseCellArray.py +108 -0
  28. cellarr_array-0.0.1/src/cellarr_array/SparseCellArray.py +202 -0
  29. cellarr_array-0.0.1/src/cellarr_array/__init__.py +21 -0
  30. cellarr_array-0.0.1/src/cellarr_array/config.py +74 -0
  31. cellarr_array-0.0.1/src/cellarr_array/helpers.py +194 -0
  32. cellarr_array-0.0.1/src/cellarr_array.egg-info/PKG-INFO +161 -0
  33. cellarr_array-0.0.1/src/cellarr_array.egg-info/SOURCES.txt +42 -0
  34. cellarr_array-0.0.1/src/cellarr_array.egg-info/dependency_links.txt +1 -0
  35. cellarr_array-0.0.1/src/cellarr_array.egg-info/not-zip-safe +1 -0
  36. cellarr_array-0.0.1/src/cellarr_array.egg-info/requires.txt +11 -0
  37. cellarr_array-0.0.1/src/cellarr_array.egg-info/top_level.txt +1 -0
  38. cellarr_array-0.0.1/tests/conftest.py +91 -0
  39. cellarr_array-0.0.1/tests/test_all.py +100 -0
  40. cellarr_array-0.0.1/tests/test_dense.py +164 -0
  41. cellarr_array-0.0.1/tests/test_helpers.py +134 -0
  42. cellarr_array-0.0.1/tests/test_sparse.py +175 -0
  43. cellarr_array-0.0.1/tox.ini +93 -0
@@ -0,0 +1,28 @@
1
+ # .coveragerc to control coverage.py
2
+ [run]
3
+ branch = True
4
+ source = cellarr_array
5
+ # omit = bad_file.py
6
+
7
+ [paths]
8
+ source =
9
+ src/
10
+ */site-packages/
11
+
12
+ [report]
13
+ # Regexes for lines to exclude from consideration
14
+ exclude_lines =
15
+ # Have to re-enable the standard pragma
16
+ pragma: no cover
17
+
18
+ # Don't complain about missing debug-only code:
19
+ def __repr__
20
+ if self\.debug
21
+
22
+ # Don't complain if tests don't hit defensive assertion code:
23
+ raise AssertionError
24
+ raise NotImplementedError
25
+
26
+ # Don't complain if non-runnable code isn't run:
27
+ if 0:
28
+ if __name__ == .__main__.:
@@ -0,0 +1,55 @@
1
+ # This workflow will install Python dependencies, run tests and lint with a single version of Python
2
+ # For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
3
+
4
+ name: Publish to PyPI
5
+
6
+ on:
7
+ push:
8
+ tags: "*"
9
+
10
+ jobs:
11
+ build:
12
+ runs-on: ubuntu-latest
13
+ permissions:
14
+ id-token: write
15
+ repository-projects: write
16
+ contents: write
17
+ pages: write
18
+
19
+ steps:
20
+ - uses: actions/checkout@v4
21
+
22
+ - name: Set up Python 3.11
23
+ uses: actions/setup-python@v5
24
+ with:
25
+ python-version: 3.11
26
+
27
+ - name: Install dependencies
28
+ run: |
29
+ python -m pip install --upgrade pip
30
+ pip install tox
31
+
32
+ - name: Test with tox
33
+ run: |
34
+ tox
35
+
36
+ - name: Build docs
37
+ run: |
38
+ tox -e docs
39
+
40
+ - run: touch ./docs/_build/html/.nojekyll
41
+
42
+ - name: GH Pages Deployment
43
+ uses: JamesIves/github-pages-deploy-action@v4
44
+ with:
45
+ branch: gh-pages # The branch the action should deploy to.
46
+ folder: ./docs/_build/html
47
+ clean: true # Automatically remove deleted files from the deploy branch
48
+
49
+ - name: Build Project and Publish
50
+ run: |
51
+ python -m tox -e clean,build
52
+
53
+ # This uses the trusted publisher workflow so no token is required.
54
+ - name: Publish to PyPI
55
+ uses: pypa/gh-action-pypi-publish@release/v1
@@ -0,0 +1,33 @@
1
+ name: Run tests
2
+
3
+ on:
4
+ push:
5
+ branches: [master]
6
+ pull_request:
7
+ branches: [master]
8
+
9
+ jobs:
10
+ build:
11
+ runs-on: ubuntu-latest
12
+ strategy:
13
+ matrix:
14
+ python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
15
+
16
+ name: Python ${{ matrix.python-version }}
17
+ steps:
18
+ - uses: actions/checkout@v4
19
+
20
+ - name: Setup Python
21
+ uses: actions/setup-python@v5
22
+ with:
23
+ python-version: ${{ matrix.python-version }}
24
+ cache: "pip"
25
+
26
+ - name: Install dependencies
27
+ run: |
28
+ python -m pip install --upgrade pip
29
+ pip install tox
30
+
31
+ - name: Test with tox
32
+ run: |
33
+ tox
@@ -0,0 +1,54 @@
1
+ # Temporary and binary files
2
+ *~
3
+ *.py[cod]
4
+ *.so
5
+ *.cfg
6
+ !.isort.cfg
7
+ !setup.cfg
8
+ *.orig
9
+ *.log
10
+ *.pot
11
+ __pycache__/*
12
+ .cache/*
13
+ .*.swp
14
+ */.ipynb_checkpoints/*
15
+ .DS_Store
16
+
17
+ # Project files
18
+ .ropeproject
19
+ .project
20
+ .pydevproject
21
+ .settings
22
+ .idea
23
+ .vscode
24
+ tags
25
+
26
+ # Package files
27
+ *.egg
28
+ *.eggs/
29
+ .installed.cfg
30
+ *.egg-info
31
+
32
+ # Unittest and coverage
33
+ htmlcov/*
34
+ .coverage
35
+ .coverage.*
36
+ .tox
37
+ junit*.xml
38
+ coverage.xml
39
+ .pytest_cache/
40
+
41
+ # Build and docs folder/files
42
+ build/*
43
+ dist/*
44
+ sdist/*
45
+ docs/api/*
46
+ docs/_rst/*
47
+ docs/_build/*
48
+ cover/*
49
+ MANIFEST
50
+
51
+ # Per-project virtualenvs
52
+ .venv*/
53
+ .conda*/
54
+ .python-version
@@ -0,0 +1,32 @@
1
+ exclude: '^docs/conf.py'
2
+
3
+ repos:
4
+ - repo: https://github.com/pre-commit/pre-commit-hooks
5
+ rev: v5.0.0
6
+ hooks:
7
+ - id: trailing-whitespace
8
+ - id: check-added-large-files
9
+ - id: check-ast
10
+ - id: check-json
11
+ - id: check-merge-conflict
12
+ - id: check-xml
13
+ - id: check-yaml
14
+ - id: debug-statements
15
+ - id: end-of-file-fixer
16
+ - id: requirements-txt-fixer
17
+ - id: mixed-line-ending
18
+ args: ['--fix=auto'] # replace 'auto' with 'lf' to enforce Linux/Mac line endings or 'crlf' for Windows
19
+
20
+ - repo: https://github.com/astral-sh/ruff-pre-commit
21
+ # Ruff version.
22
+ rev: v0.8.2
23
+ hooks:
24
+ - id: ruff
25
+ args: [--fix, --exit-non-zero-on-fix]
26
+ - id: ruff-format
27
+
28
+ ## Check for misspells in documentation files:
29
+ # - repo: https://github.com/codespell-project/codespell
30
+ # rev: v2.2.5
31
+ # hooks:
32
+ # - id: codespell
@@ -0,0 +1,27 @@
1
+ # Read the Docs configuration file
2
+ # See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
3
+
4
+ # Required
5
+ version: 2
6
+
7
+ # Build documentation in the docs/ directory with Sphinx
8
+ sphinx:
9
+ configuration: docs/conf.py
10
+
11
+ # Build documentation with MkDocs
12
+ #mkdocs:
13
+ # configuration: mkdocs.yml
14
+
15
+ # Optionally build your docs in additional formats such as PDF
16
+ formats:
17
+ - pdf
18
+
19
+ build:
20
+ os: ubuntu-22.04
21
+ tools:
22
+ python: "3.11"
23
+
24
+ python:
25
+ install:
26
+ - requirements: docs/requirements.txt
27
+ - {path: ., method: pip}
@@ -0,0 +1,3 @@
1
+ # Contributors
2
+
3
+ * Jayaram Kancherla [jayaram.kancherla@gmail.com](mailto:jayaram.kancherla@gmail.com)
@@ -0,0 +1,13 @@
1
+ # Changelog
2
+
3
+ ## Version 0.0.1
4
+
5
+ Initial implementation of the sparse and dense arrays backed by TileDB.
6
+
7
+ - Supports reading of objects
8
+ - Directly slices the TileDB object is all arguments to subset are contiguous blocks.
9
+ - Otherwise redirects them to `multi_index`, if one of the argument to subset is a slice, drops the last because of inclusive upper bounds in this method.
10
+
11
+ This helps keeps slicing consistent across various operations and trying to be performant in the process.
12
+
13
+ - Supports writing of various data objects into dense and sparse arrays. Expects all chunks to be aligned along the rows.
@@ -0,0 +1,371 @@
1
+ ```{todo} THIS IS SUPPOSED TO BE AN EXAMPLE. MODIFY IT ACCORDING TO YOUR NEEDS!
2
+
3
+ The document assumes you are using a source repository service that promotes a
4
+ contribution model similar to [GitHub's fork and pull request workflow].
5
+ While this is true for the majority of services (like GitHub, GitLab,
6
+ BitBucket), it might not be the case for private repositories (e.g., when
7
+ using Gerrit).
8
+
9
+ Also notice that the code examples might refer to GitHub URLs or the text
10
+ might use GitHub specific terminology (e.g., *Pull Request* instead of *Merge
11
+ Request*).
12
+
13
+ Please make sure to check the document having these assumptions in mind
14
+ and update things accordingly.
15
+ ```
16
+
17
+ ```{todo} Provide the correct links/replacements at the bottom of the document.
18
+ ```
19
+
20
+ ```{todo} You might want to have a look on [PyScaffold's contributor's guide],
21
+
22
+ especially if your project is open source. The text should be very similar to
23
+ this template, but there are a few extra contents that you might decide to
24
+ also include, like mentioning labels of your issue tracker or automated
25
+ releases.
26
+ ```
27
+
28
+ # Contributing
29
+
30
+ Welcome to `cellarr-array` contributor's guide.
31
+
32
+ This document focuses on getting any potential contributor familiarized with
33
+ the development processes, but [other kinds of contributions] are also appreciated.
34
+
35
+ If you are new to using [git] or have never collaborated in a project previously,
36
+ please have a look at [contribution-guide.org]. Other resources are also
37
+ listed in the excellent [guide created by FreeCodeCamp] [^contrib1].
38
+
39
+ Please notice, all users and contributors are expected to be **open,
40
+ considerate, reasonable, and respectful**. When in doubt,
41
+ [Python Software Foundation's Code of Conduct] is a good reference in terms of
42
+ behavior guidelines.
43
+
44
+ ## Issue Reports
45
+
46
+ If you experience bugs or general issues with `cellarr-array`, please have a look
47
+ on the [issue tracker].
48
+ If you don't see anything useful there, please feel free to fire an issue report.
49
+
50
+ :::{tip}
51
+ Please don't forget to include the closed issues in your search.
52
+ Sometimes a solution was already reported, and the problem is considered
53
+ **solved**.
54
+ :::
55
+
56
+ New issue reports should include information about your programming environment
57
+ (e.g., operating system, Python version) and steps to reproduce the problem.
58
+ Please try also to simplify the reproduction steps to a very minimal example
59
+ that still illustrates the problem you are facing. By removing other factors,
60
+ you help us to identify the root cause of the issue.
61
+
62
+ ## Documentation Improvements
63
+
64
+ You can help improve `cellarr-array` docs by making them more readable and coherent, or
65
+ by adding missing information and correcting mistakes.
66
+
67
+ `cellarr-array` documentation uses [Sphinx] as its main documentation compiler.
68
+ This means that the docs are kept in the same repository as the project code, and
69
+ that any documentation update is done in the same way was a code contribution.
70
+
71
+ ```{todo} Don't forget to mention which markup language you are using.
72
+
73
+ e.g., [reStructuredText] or [CommonMark] with [MyST] extensions.
74
+ ```
75
+
76
+ ```{todo} If your project is hosted on GitHub, you can also mention the following tip:
77
+
78
+ :::{tip}
79
+ Please notice that the [GitHub web interface] provides a quick way of
80
+ propose changes in `cellarr-array`'s files. While this mechanism can
81
+ be tricky for normal code contributions, it works perfectly fine for
82
+ contributing to the docs, and can be quite handy.
83
+
84
+ If you are interested in trying this method out, please navigate to
85
+ the `docs` folder in the source [repository], find which file you
86
+ would like to propose changes and click in the little pencil icon at the
87
+ top, to open [GitHub's code editor]. Once you finish editing the file,
88
+ please write a message in the form at the bottom of the page describing
89
+ which changes have you made and what are the motivations behind them and
90
+ submit your proposal.
91
+ :::
92
+ ```
93
+
94
+ When working on documentation changes in your local machine, you can
95
+ compile them using [tox] :
96
+
97
+ ```
98
+ tox -e docs
99
+ ```
100
+
101
+ and use Python's built-in web server for a preview in your web browser
102
+ (`http://localhost:8000`):
103
+
104
+ ```
105
+ python3 -m http.server --directory 'docs/_build/html'
106
+ ```
107
+
108
+ ## Code Contributions
109
+
110
+ ```{todo} Please include a reference or explanation about the internals of the project.
111
+
112
+ An architecture description, design principles or at least a summary of the
113
+ main concepts will make it easy for potential contributors to get started
114
+ quickly.
115
+ ```
116
+
117
+ ### Submit an issue
118
+
119
+ Before you work on any non-trivial code contribution it's best to first create
120
+ a report in the [issue tracker] to start a discussion on the subject.
121
+ This often provides additional considerations and avoids unnecessary work.
122
+
123
+ ### Create an environment
124
+
125
+ Before you start coding, we recommend creating an isolated [virtual environment]
126
+ to avoid any problems with your installed Python packages.
127
+ This can easily be done via either [virtualenv]:
128
+
129
+ ```
130
+ virtualenv <PATH TO VENV>
131
+ source <PATH TO VENV>/bin/activate
132
+ ```
133
+
134
+ or [Miniconda]:
135
+
136
+ ```
137
+ conda create -n cellarr-array python=3 six virtualenv pytest pytest-cov
138
+ conda activate cellarr-array
139
+ ```
140
+
141
+ ### Clone the repository
142
+
143
+ 1. Create an user account on GitHub if you do not already have one.
144
+
145
+ 2. Fork the project [repository]: click on the *Fork* button near the top of the
146
+ page. This creates a copy of the code under your account on GitHub.
147
+
148
+ 3. Clone this copy to your local disk:
149
+
150
+ ```
151
+ git clone git@github.com:YourLogin/cellarr-array.git
152
+ cd cellarr-array
153
+ ```
154
+
155
+ 4. You should run:
156
+
157
+ ```
158
+ pip install -U pip setuptools -e .
159
+ ```
160
+
161
+ to be able to import the package under development in the Python REPL.
162
+
163
+ ```{todo} if you are not using pre-commit, please remove the following item:
164
+ ```
165
+
166
+ 5. Install [pre-commit]:
167
+
168
+ ```
169
+ pip install pre-commit
170
+ pre-commit install
171
+ ```
172
+
173
+ `cellarr-array` comes with a lot of hooks configured to automatically help the
174
+ developer to check the code being written.
175
+
176
+ ### Implement your changes
177
+
178
+ 1. Create a branch to hold your changes:
179
+
180
+ ```
181
+ git checkout -b my-feature
182
+ ```
183
+
184
+ and start making changes. Never work on the main branch!
185
+
186
+ 2. Start your work on this branch. Don't forget to add [docstrings] to new
187
+ functions, modules and classes, especially if they are part of public APIs.
188
+
189
+ 3. Add yourself to the list of contributors in `AUTHORS.rst`.
190
+
191
+ 4. When you’re done editing, do:
192
+
193
+ ```
194
+ git add <MODIFIED FILES>
195
+ git commit
196
+ ```
197
+
198
+ to record your changes in [git].
199
+
200
+ ```{todo} if you are not using pre-commit, please remove the following item:
201
+ ```
202
+
203
+ Please make sure to see the validation messages from [pre-commit] and fix
204
+ any eventual issues.
205
+ This should automatically use [flake8]/[black] to check/fix the code style
206
+ in a way that is compatible with the project.
207
+
208
+ :::{important}
209
+ Don't forget to add unit tests and documentation in case your
210
+ contribution adds an additional feature and is not just a bugfix.
211
+
212
+ Moreover, writing a [descriptive commit message] is highly recommended.
213
+ In case of doubt, you can check the commit history with:
214
+
215
+ ```
216
+ git log --graph --decorate --pretty=oneline --abbrev-commit --all
217
+ ```
218
+
219
+ to look for recurring communication patterns.
220
+ :::
221
+
222
+ 5. Please check that your changes don't break any unit tests with:
223
+
224
+ ```
225
+ tox
226
+ ```
227
+
228
+ (after having installed [tox] with `pip install tox` or `pipx`).
229
+
230
+ You can also use [tox] to run several other pre-configured tasks in the
231
+ repository. Try `tox -av` to see a list of the available checks.
232
+
233
+ ### Submit your contribution
234
+
235
+ 1. If everything works fine, push your local branch to the remote server with:
236
+
237
+ ```
238
+ git push -u origin my-feature
239
+ ```
240
+
241
+ 2. Go to the web page of your fork and click "Create pull request"
242
+ to send your changes for review.
243
+
244
+ ```{todo} if you are using GitHub, you can uncomment the following paragraph
245
+
246
+ Find more detailed information in [creating a PR]. You might also want to open
247
+ the PR as a draft first and mark it as ready for review after the feedbacks
248
+ from the continuous integration (CI) system or any required fixes.
249
+
250
+ ```
251
+
252
+ ### Troubleshooting
253
+
254
+ The following tips can be used when facing problems to build or test the
255
+ package:
256
+
257
+ 1. Make sure to fetch all the tags from the upstream [repository].
258
+ The command `git describe --abbrev=0 --tags` should return the version you
259
+ are expecting. If you are trying to run CI scripts in a fork repository,
260
+ make sure to push all the tags.
261
+ You can also try to remove all the egg files or the complete egg folder, i.e.,
262
+ `.eggs`, as well as the `*.egg-info` folders in the `src` folder or
263
+ potentially in the root of your project.
264
+
265
+ 2. Sometimes [tox] misses out when new dependencies are added, especially to
266
+ `setup.cfg` and `docs/requirements.txt`. If you find any problems with
267
+ missing dependencies when running a command with [tox], try to recreate the
268
+ `tox` environment using the `-r` flag. For example, instead of:
269
+
270
+ ```
271
+ tox -e docs
272
+ ```
273
+
274
+ Try running:
275
+
276
+ ```
277
+ tox -r -e docs
278
+ ```
279
+
280
+ 3. Make sure to have a reliable [tox] installation that uses the correct
281
+ Python version (e.g., 3.7+). When in doubt you can run:
282
+
283
+ ```
284
+ tox --version
285
+ # OR
286
+ which tox
287
+ ```
288
+
289
+ If you have trouble and are seeing weird errors upon running [tox], you can
290
+ also try to create a dedicated [virtual environment] with a [tox] binary
291
+ freshly installed. For example:
292
+
293
+ ```
294
+ virtualenv .venv
295
+ source .venv/bin/activate
296
+ .venv/bin/pip install tox
297
+ .venv/bin/tox -e all
298
+ ```
299
+
300
+ 4. [Pytest can drop you] in an interactive session in the case an error occurs.
301
+ In order to do that you need to pass a `--pdb` option (for example by
302
+ running `tox -- -k <NAME OF THE FALLING TEST> --pdb`).
303
+ You can also setup breakpoints manually instead of using the `--pdb` option.
304
+
305
+ ## Maintainer tasks
306
+
307
+ ### Releases
308
+
309
+ ```{todo} This section assumes you are using PyPI to publicly release your package.
310
+
311
+ If instead you are using a different/private package index, please update
312
+ the instructions accordingly.
313
+ ```
314
+
315
+ If you are part of the group of maintainers and have correct user permissions
316
+ on [PyPI], the following steps can be used to release a new version for
317
+ `cellarr-array`:
318
+
319
+ 1. Make sure all unit tests are successful.
320
+ 2. Tag the current commit on the main branch with a release tag, e.g., `v1.2.3`.
321
+ 3. Push the new tag to the upstream [repository],
322
+ e.g., `git push upstream v1.2.3`
323
+ 4. Clean up the `dist` and `build` folders with `tox -e clean`
324
+ (or `rm -rf dist build`)
325
+ to avoid confusion with old builds and Sphinx docs.
326
+ 5. Run `tox -e build` and check that the files in `dist` have
327
+ the correct version (no `.dirty` or [git] hash) according to the [git] tag.
328
+ Also check the sizes of the distributions, if they are too big (e.g., >
329
+ 500KB), unwanted clutter may have been accidentally included.
330
+ 6. Run `tox -e publish -- --repository pypi` and check that everything was
331
+ uploaded to [PyPI] correctly.
332
+
333
+ [^contrib1]: Even though, these resources focus on open source projects and
334
+ communities, the general ideas behind collaborating with other developers
335
+ to collectively create software are general and can be applied to all sorts
336
+ of environments, including private companies and proprietary code bases.
337
+
338
+
339
+ [black]: https://pypi.org/project/black/
340
+ [commonmark]: https://commonmark.org/
341
+ [contribution-guide.org]: http://www.contribution-guide.org/
342
+ [creating a pr]: https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request
343
+ [descriptive commit message]: https://chris.beams.io/posts/git-commit
344
+ [docstrings]: https://www.sphinx-doc.org/en/master/usage/extensions/napoleon.html
345
+ [first-contributions tutorial]: https://github.com/firstcontributions/first-contributions
346
+ [flake8]: https://flake8.pycqa.org/en/stable/
347
+ [git]: https://git-scm.com
348
+ [github web interface]: https://docs.github.com/en/github/managing-files-in-a-repository/managing-files-on-github/editing-files-in-your-repository
349
+ [github's code editor]: https://docs.github.com/en/github/managing-files-in-a-repository/managing-files-on-github/editing-files-in-your-repository
350
+ [github's fork and pull request workflow]: https://guides.github.com/activities/forking/
351
+ [guide created by freecodecamp]: https://github.com/freecodecamp/how-to-contribute-to-open-source
352
+ [miniconda]: https://docs.conda.io/en/latest/miniconda.html
353
+ [myst]: https://myst-parser.readthedocs.io/en/latest/syntax/syntax.html
354
+ [other kinds of contributions]: https://opensource.guide/how-to-contribute
355
+ [pre-commit]: https://pre-commit.com/
356
+ [pypi]: https://pypi.org/
357
+ [pyscaffold's contributor's guide]: https://pyscaffold.org/en/stable/contributing.html
358
+ [pytest can drop you]: https://docs.pytest.org/en/stable/usage.html#dropping-to-pdb-python-debugger-at-the-start-of-a-test
359
+ [python software foundation's code of conduct]: https://www.python.org/psf/conduct/
360
+ [restructuredtext]: https://www.sphinx-doc.org/en/master/usage/restructuredtext/
361
+ [sphinx]: https://www.sphinx-doc.org/en/master/
362
+ [tox]: https://tox.readthedocs.io/en/stable/
363
+ [virtual environment]: https://realpython.com/python-virtual-environments-a-primer/
364
+ [virtualenv]: https://virtualenv.pypa.io/en/stable/
365
+
366
+
367
+ ```{todo} Please review and change the following definitions:
368
+ ```
369
+
370
+ [repository]: https://github.com/<USERNAME>/cellarr-array
371
+ [issue tracker]: https://github.com/<USERNAME>/cellarr-array/issues
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2025 Jayaram Kancherla
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.