Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rosettacommons/pyrosetta_colab_setup
Files for our auxiliary pyrosetta_colab_setup PyPI package
https://github.com/rosettacommons/pyrosetta_colab_setup
Last synced: 5 days ago
JSON representation
Files for our auxiliary pyrosetta_colab_setup PyPI package
- Host: GitHub
- URL: https://github.com/rosettacommons/pyrosetta_colab_setup
- Owner: RosettaCommons
- License: mit
- Created: 2021-04-02T22:36:38.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-03-07T05:16:56.000Z (8 months ago)
- Last Synced: 2024-09-08T10:43:48.354Z (2 months ago)
- Language: Python
- Size: 39.1 KB
- Stars: 3
- Watchers: 216
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# pyrosetta_colab_setup
Files for our auxiliary pyrosetta_colab_setup PyPI package## How to build package for release and upload to PyPI
1. Change version number in `setup.py`
```
# first run docker container
docker run -it python /bin/bashpip install --user --upgrade setuptools wheel twine
rm dist/* ; python setup.py sdist bdist_wheel
python -m twine upload dist/*
python -m twine upload --repository pyrosettacolabsetup dist/*
```