Skip to content

Commit

Permalink
Add release documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
arshadkazmi42 committed Mar 29, 2022
1 parent 70acd1b commit 205b85c
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
## Release

- Build the project using below command

```
python3 setup.py sdist bdist_wheel
```

- Publish to test pypi repository to test all the changes

```
python3 -m twine upload --repository testpypi dist/*
```

- Publish to pypi repository

```
python3 -m twine upload dist/*
```

**--skip-existing**: Use this flag to override an existing version

0 comments on commit 205b85c

Please sign in to comment.