Skip to content

Commit 550e123

Browse files
authored
Merge pull request #532 from pytest-dev/poetry
Use Poetry
2 parents 27dfc13 + 54a85c9 commit 550e123

12 files changed

+606
-111
lines changed

CONTRIBUTING.md

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# How to setup development environment
2+
- Install poetry: https://python-poetry.org/docs/#installation
3+
- (Optional) Install pre-commit: https://pre-commit.com/#install
4+
- Run `poetry install` to install dependencies
5+
- Run `pre-commit install` to install pre-commit hooks
6+
7+
# How to run tests
8+
- Run `poetry run pytest`
9+
- or run `tox`
10+
# How to make a release
11+
12+
```shell
13+
python -m pip install --upgrade build twine
14+
15+
# cleanup the ./dist folder
16+
rm -rf ./dist
17+
18+
# Build the distributions
19+
python -m build
20+
21+
# Upload them
22+
23+
twine upload dist/*
24+
```

MANIFEST.in

-4
This file was deleted.

Makefile

-23
This file was deleted.

RELEASING.md

-15
This file was deleted.

0 commit comments

Comments
 (0)