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

https://github.com/simpson-computer-technologies-research/python_package_template

Template for Setting up your Python Package
https://github.com/simpson-computer-technologies-research/python_package_template

package pypi python template twine

Last synced: 3 months ago
JSON representation

Template for Setting up your Python Package

Awesome Lists containing this project

README

          

# Python Package Template
Your Package Long Description

# Update
```
python3 -m pip install --upgrade pip
python3 -m pip install --upgrade build
python3 -m pip install --upgrade twine
```

# Upload
```
rm /dist
python3 -m build
python3 -m twine upload dist/*
```