https://github.com/bhrutledge/example-package-bhrutledge
https://github.com/bhrutledge/example-package-bhrutledge
Last synced: 22 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/bhrutledge/example-package-bhrutledge
- Owner: bhrutledge
- License: mit
- Created: 2019-07-04T10:11:31.000Z (about 7 years ago)
- Default Branch: main
- Last Pushed: 2022-07-30T14:04:42.000Z (almost 4 years ago)
- Last Synced: 2025-10-28T16:43:10.240Z (9 months ago)
- Language: Python
- Homepage:
- Size: 18.6 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Example Package
This is a simple example package. You can use [Github-flavored Markdown](https://guides.github.com/features/mastering-markdown/) to write your content.
## Developing
Create and activate a [virtual environment](https://packaging.python.org/tutorials/installing-packages/#creating-and-using-virtual-environments).
Install the packages required for development:
```sh
python -m pip install -U pip
python -m pip install -U pytest
python -m pip install -e .
```
Run the tests:
```sh
pytest
```