Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/machow/lahman-py
Python data package for the lahman baseball dataset
https://github.com/machow/lahman-py
Last synced: about 1 month ago
JSON representation
Python data package for the lahman baseball dataset
- Host: GitHub
- URL: https://github.com/machow/lahman-py
- Owner: machow
- License: mit
- Created: 2022-03-05T22:33:38.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-03-20T16:21:18.000Z (almost 3 years ago)
- Last Synced: 2024-10-14T13:28:12.094Z (3 months ago)
- Language: Python
- Size: 8.98 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# template-python-pkg
## Developing
```shell
# install with development dependencies
pip install -e .[dev]# or install from requirements file
pip install -r requirements/dev.txt
```## Testing
```shell
# run all tests, see pytest section of pyproject.toml
pytest# run specific marks
pytest -m ex2# stop on first failure, drop into debugger
pytest -x --pdb
```## Setting version number
```shell
# set version number
git tag v0.0.1# (optional) push to github
git push origin --tags# check version
python -m setuptools_scm
```