Skip to content

Commit 1f6c629

Browse files
committed
Fix readme
1 parent e20650f commit 1f6c629

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Key features:
55
- Headless OpenGL rendering
66
- Output numpy.ndarray directly
77

8-
## Requirement
8+
## Requirements
99
- cmake >= 3.22
1010

1111

@@ -17,7 +17,7 @@ pip install .
1717
```
1818

1919

20-
### Common issue
20+
### Common issues
2121

2222
If you encounter missing libstdc++.so.6 error in conda environment, try this:
2323

@@ -26,7 +26,7 @@ Add this line to your .bashrc or .zshrc
2626
export LD_PRELOAD=/usr/lib/x86_64-linux-gnu/libstdc++.so.6
2727
```
2828

29-
## Useage
29+
## Usage
3030

3131
```python
3232
import renderpy

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ def build_extension(self, ext: CMakeExtension) -> None:
132132
author_email="[email protected]",
133133
description="Simple python rasterizer implemented by OpenGL and C++",
134134
long_description="",
135-
ext_modules=[CMakeExtension("cmake_example")],
135+
ext_modules=[CMakeExtension("renderpy")],
136136
cmdclass={"build_ext": CMakeBuild},
137137
zip_safe=False,
138138
extras_require={"test": ["pytest>=6.0"]},

0 commit comments

Comments
 (0)