Skip to content

Commit 3b18726

Browse files
committed
Remove old example
1 parent a78fa04 commit 3b18726

File tree

8 files changed

+5
-81
lines changed

8 files changed

+5
-81
lines changed

.gitignore

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,5 @@
44
.eggs
55
/dist
66
/build
7-
/*.egg-info
7+
*.egg-info
88
Cargo.lock
9-
/example/build/
10-
/example/dist/
11-
/example/target/
12-
/example/*.egg-info
13-
.idea/

README.rst

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,19 @@ Setuptools plugin for Rust extensions support
44

55
.. image:: https://travis-ci.org/PyO3/setuptools-rust.svg?branch=master
66
:target: https://travis-ci.org/PyO3/setuptools-rust
7-
:align: right
87

98
.. image:: https://badge.fury.io/py/setuptools-rust.svg
109
:target: https://badge.fury.io/py/setuptools-rust
1110

12-
1311
Setuptools helpers for rust Python extensions implemented with `PyO3 python binding <https://github.com/PyO3/pyo3>`_.
1412

1513
Compile and distribute Python extensions written in rust as easily as if they were written in C.
1614

1715
Example
1816
-------
1917

18+
For a complete example, see `word-count <https://github.com/PyO3/pyo3/tree/master/examples/word-count>`_.
19+
2020
setup.py
2121
^^^^^^^^
2222

@@ -57,17 +57,14 @@ You can use same commands as for c-extensions. For example::
5757
Finished processing dependencies for hello_rust==1.0
5858

5959

60-
Or you can use commands like `bdist_wheel` or `bdist_egg`.
60+
Or you can use commands like `bdist_wheel` (after installing `wheel`) or `bdist_egg`.
6161

62-
You can build `manylinux1` binary wheels using Docker:
62+
You can build `manylinux1` binary wheels using Docker, e.g. with the `build-wheels.sh` script:
6363

6464
.. code-block:: bash
6565
6666
docker run --rm -v `pwd`:/io quay.io/pypa/manylinux1_x86_64 /io/build-wheels.sh
6767
68-
`build-wheels.sh` example can be found here:
69-
https://github.com/PyO3/setuptools-rust/blob/master/example/build-wheels.sh
70-
7168
RustExtension
7269
-------------
7370

File renamed without changes.

example/Cargo.toml

Lines changed: 0 additions & 10 deletions
This file was deleted.

example/README.rst

Lines changed: 0 additions & 6 deletions
This file was deleted.

example/hello_rust/__init__.py

Lines changed: 0 additions & 5 deletions
This file was deleted.

example/setup.py

Lines changed: 0 additions & 12 deletions
This file was deleted.

example/src/lib.rs

Lines changed: 0 additions & 35 deletions
This file was deleted.

0 commit comments

Comments
 (0)