Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```