https://github.com/chkwon/cython-project-template
https://github.com/chkwon/cython-project-template
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/chkwon/cython-project-template
- Owner: chkwon
- Created: 2024-03-16T10:30:28.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-03-17T06:30:56.000Z (about 1 year ago)
- Last Synced: 2025-03-10T23:02:27.549Z (2 months ago)
- Language: Python
- Size: 8.79 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# cython-project-template
## Installation
From the root directory of this repo:
```
pip install .
```
which will install a package named `mycypackage` to your Python package directory.The dependency information with other package information is located in `setup.py`.
## Example
To test if `mycypackage` is installed correctly, run the following code *outside* this repo:
```python
import mycypackage as mcp
mcp.double_random_vector(3)
```## Unit Test
```
pytest tests
```