Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chkwon/python-project-template
https://github.com/chkwon/python-project-template
Last synced: 26 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/chkwon/python-project-template
- Owner: chkwon
- Created: 2024-03-16T10:09:26.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-03-16T13:10:39.000Z (8 months ago)
- Last Synced: 2024-03-17T12:21:59.940Z (8 months ago)
- Language: Python
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# python-project-template
## Installation
From the root directory of this repo:
```
pip install .
```
which will install a package named `mypypackage` to your Python package directory.The dependency information with other package information is located in `pyproject.toml`
## Example
To test if `mypypackage` is installed correctly, run the following code *outside* this repo:
```python
import mypypackage
xyplot(0, 1, 10)
```## Unit Test
```
pytest tests
```