Skip to content

Commit 072b540

Browse files
committed
docs: update readme with build tools
1 parent 83954b3 commit 072b540

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

README.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,22 @@ You can also try out UniversalPython in our [live online demo](https://universal
5353
### UniversalPython in Jupyter
5454
Install our Jupyter Kernel to easily use UniversalPython in Jupyter Notebook or Jupyter Lab. Instructions are here: https://github.com/UniversalPython/universalpython_kernel
5555

56+
### Build and release
57+
Install packaging dependencies:
58+
```bash
59+
pip install -U packaging
60+
```
61+
62+
To build:
63+
```bash
64+
python setup.py sdist bdist_wheel
65+
```
66+
67+
To release on PyPI:
68+
```bash
69+
twine upload --repository testpypi dist/* --verbose
70+
```
71+
5672
### Learn More
5773

5874
Check out the [documentation](https://universalpython.github.io/docs/intro).

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
setup(
1717
name='universalpython',
18-
version='0.1.0',
18+
version='0.1.1',
1919
author='Saad Bazaz',
2020
author_email='saadbazaz@hotmail.com',
2121
url='https://github.com/UniversalPython/UniversalPython',

0 commit comments

Comments
 (0)