ignore-python 0.1.0__tar.gz → 0.1.2__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.
@@ -20,9 +20,10 @@ jobs:
20
20
  with:
21
21
  python-version: '3.12'
22
22
 
23
- - run: pip install maturin
24
- - run: maturin dev
25
- - run: pdoc --no-show-source 'ignore' '!ignore.ignore'
23
+ - run: python3 -m venv .venv
24
+ - run: source .venv/bin/activate && pip install maturin pdoc
25
+ - run: source .venv/bin/activate && maturin dev
26
+ - run: source .venv/bin/activate && pdoc -o docs/ --no-show-source 'ignore' '!ignore.ignore'
26
27
 
27
28
  - uses: actions/upload-pages-artifact@v3
28
29
  with:
@@ -95,7 +95,7 @@ dependencies = [
95
95
 
96
96
  [[package]]
97
97
  name = "ignore-python"
98
- version = "0.1.0"
98
+ version = "0.1.2"
99
99
  dependencies = [
100
100
  "ignore",
101
101
  "pyo3",
@@ -109,9 +109,9 @@ checksum = "b248f5224d1d606005e02c97f5aa4e88eeb230488bcc03bc9ca4d7991399f2b5"
109
109
 
110
110
  [[package]]
111
111
  name = "libc"
112
- version = "0.2.156"
112
+ version = "0.2.157"
113
113
  source = "registry+https://github.com/rust-lang/crates.io-index"
114
- checksum = "a5f43f184355eefb8d17fc948dbecf6c13be3c141f20d834ae842193a448c72a"
114
+ checksum = "374af5f94e54fa97cf75e945cce8a6b201e88a1a07e688b47dfd2a59c66dbd86"
115
115
 
116
116
  [[package]]
117
117
  name = "log"
@@ -275,9 +275,9 @@ dependencies = [
275
275
 
276
276
  [[package]]
277
277
  name = "syn"
278
- version = "2.0.74"
278
+ version = "2.0.75"
279
279
  source = "registry+https://github.com/rust-lang/crates.io-index"
280
- checksum = "1fceb41e3d546d0bd83421d3409b1460cc7444cd389341a4c880fe7a042cb3d7"
280
+ checksum = "f6af063034fc1935ede7be0122941bafa9bacb949334d090b77ca98b5817c7d9"
281
281
  dependencies = [
282
282
  "proc-macro2",
283
283
  "quote",
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "ignore-python"
3
- version = "0.1.0"
3
+ version = "0.1.2"
4
4
  edition = "2021"
5
5
 
6
6
  # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
@@ -1,12 +1,16 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: ignore-python
3
- Version: 0.1.0
3
+ Version: 0.1.2
4
4
  Classifier: Programming Language :: Rust
5
5
  Classifier: Programming Language :: Python :: Implementation :: CPython
6
6
  Classifier: Programming Language :: Python :: Implementation :: PyPy
7
7
  License-File: LICENSE.txt
8
+ Summary: Rust ignore crate Python bindings
9
+ Keywords: python,gitignore,search,rust,extension,module,filesystem,recursively-search,fd,ripgrep,ignore
8
10
  Requires-Python: >=3.8
9
11
  Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
12
+ Project-URL: documentation, https://borsattoz.github.io/ignore-python
13
+ Project-URL: repository, https://github.com/borsattoz/ignore-python
10
14
 
11
15
  # ignore in Python
12
16
  This is a Python library that binds to the Rust crate
@@ -4,7 +4,11 @@ build-backend = "maturin"
4
4
 
5
5
  [project]
6
6
  name = "ignore-python"
7
+ description = "Rust ignore crate Python bindings"
8
+ readme = "README.md"
9
+ license = {file = "LICENSE.txt"}
7
10
  requires-python = ">=3.8"
11
+ keywords = ["python", "gitignore", "search", "rust", "extension", "module", "filesystem", "recursively-search", "fd", "ripgrep", "ignore"]
8
12
  classifiers = [
9
13
  "Programming Language :: Rust",
10
14
  "Programming Language :: Python :: Implementation :: CPython",
@@ -12,5 +16,9 @@ classifiers = [
12
16
  ]
13
17
  dynamic = ["version"]
14
18
 
19
+ [project.urls]
20
+ documentation = "https://borsattoz.github.io/ignore-python"
21
+ repository = "https://github.com/borsattoz/ignore-python"
22
+
15
23
  [tool.maturin]
16
24
  features = ["pyo3/extension-module"]
File without changes
File without changes
File without changes
File without changes