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
- Host: GitHub
- URL: https://github.com/simpson-computer-technologies-research/python_package_template
- Owner: Simpson-Computer-Technologies-Research
- License: mit
- Created: 2022-12-09T01:24:54.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-12-09T01:39:09.000Z (almost 3 years ago)
- Last Synced: 2023-03-26T13:19:54.052Z (over 2 years ago)
- Topics: package, pypi, python, template, twine
- Language: Python
- Homepage: https://simpson-computer-technologies-research.github.io/Python_Package_Template/
- Size: 4.88 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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/*
```