Skip to content

Commit a973a7b

Browse files
committed
Initial commit.
0 parents  commit a973a7b

File tree

4 files changed

+130
-0
lines changed

4 files changed

+130
-0
lines changed

.github/dependabot.yml

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: "weekly"
7+
8+
- package-ecosystem: "cargo"
9+
directory: "/"
10+
schedule:
11+
interval: "weekly"

.gitignore

+72
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
/target
2+
3+
# Byte-compiled / optimized / DLL files
4+
__pycache__/
5+
.pytest_cache/
6+
*.py[cod]
7+
8+
# C extensions
9+
*.so
10+
11+
# Distribution / packaging
12+
.Python
13+
.venv/
14+
env/
15+
bin/
16+
build/
17+
develop-eggs/
18+
dist/
19+
eggs/
20+
lib/
21+
lib64/
22+
parts/
23+
sdist/
24+
var/
25+
include/
26+
man/
27+
venv/
28+
*.egg-info/
29+
.installed.cfg
30+
*.egg
31+
32+
# Installer logs
33+
pip-log.txt
34+
pip-delete-this-directory.txt
35+
pip-selfcheck.json
36+
37+
# Unit test / coverage reports
38+
htmlcov/
39+
.tox/
40+
.coverage
41+
.cache
42+
nosetests.xml
43+
coverage.xml
44+
45+
# Translations
46+
*.mo
47+
48+
# Mr Developer
49+
.mr.developer.cfg
50+
.project
51+
.pydevproject
52+
53+
# Rope
54+
.ropeproject
55+
56+
# Django stuff:
57+
*.log
58+
*.pot
59+
60+
.DS_Store
61+
62+
# Sphinx documentation
63+
docs/_build/
64+
65+
# PyCharm
66+
.idea/
67+
68+
# VSCode
69+
.vscode/
70+
71+
# Pyenv
72+
.python-version

LICENSE

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
Copyright (c) 2023 Julian Berman
2+
3+
Permission is hereby granted, free of charge, to any person obtaining a copy
4+
of this software and associated documentation files (the "Software"), to deal
5+
in the Software without restriction, including without limitation the rights
6+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7+
copies of the Software, and to permit persons to whom the Software is
8+
furnished to do so, subject to the following conditions:
9+
10+
The above copyright notice and this permission notice shall be included in
11+
all copies or substantial portions of the Software.
12+
13+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19+
THE SOFTWARE.

README.rst

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
===========
2+
``rpds.py``
3+
===========
4+
5+
|PyPI| |Pythons| |CI| |pre-commit|
6+
7+
.. |PyPI| image:: https://img.shields.io/pypi/v/rpds-py.svg
8+
:alt: PyPI version
9+
:target: https://pypi.org/project/rpds-py/
10+
11+
.. |Pythons| image:: https://img.shields.io/pypi/pyversions/rpds-py.svg
12+
:alt: Supported Python versions
13+
:target: https://pypi.org/project/rpds-py/
14+
15+
.. |CI| image:: https://github.com/Julian/rpds-py/workflows/CI/badge.svg
16+
:alt: Build status
17+
:target: https://github.com/Julian/rpds-py/actions?query=workflow%3ACI
18+
19+
.. |ReadTheDocs| image:: https://readthedocs.org/projects/rpds-py/badge/?version=stable&style=flat
20+
:alt: ReadTheDocs status
21+
:target: https://rpds-py.readthedocs.io/en/stable/
22+
23+
.. |pre-commit| image:: https://results.pre-commit.ci/badge/github/Julian/rpds-py/main.svg
24+
:alt: pre-commit.ci status
25+
:target: https://results.pre-commit.ci/latest/github/Julian/rpds-py/main
26+
27+
28+
Python bindings to the Rust ``rpds`` crate.

0 commit comments

Comments
 (0)