Compare commits

..

No commits in common. "a82d7292467f11a911275d6a92e07d6a5aba7ce3" and "5391d704e38325b680ea03f8c5f8fbe2a84b271a" have entirely different histories.

3 changed files with 19 additions and 10 deletions

1
.gitignore vendored
View file

@ -1,3 +1,2 @@
*.pyc *.pyc
dist/
Wutta_Demo.egg-info/ Wutta_Demo.egg-info/

View file

@ -5,8 +5,6 @@ All notable changes to Wutta Demo will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
## v0.1.0 (2024-11-24) ## [0.1.0] - ??
### Added
### Feat - Initial version.
- initial version

View file

@ -9,13 +9,25 @@ import shutil
from invoke import task from invoke import task
here = os.path.abspath(os.path.dirname(__file__))
exec(open(os.path.join(here, 'wuttademo', '_version.py')).read())
@task @task
def release(c): def release(c):
""" """
Release a new version of Wutta Demo Release a new version of Wutta Demo
""" """
if os.path.exists('dist'): # rebuild local tar.gz file for distribution
shutil.rmtree('dist') if os.path.exists('Wutta_Demo.egg-info'):
shutil.rmtree('Wutta_Demo.egg-info')
c.run('python -m build --sdist') c.run('python -m build --sdist')
c.run('twine upload dist/*')
# filename of built package
filename = 'Wutta-Demo-{}.tar.gz'.format(__version__)
# TODO: uncomment and update these details, to upload to private PyPI
#c.run('scp dist/{} rattail@pypi.example.com:/srv/pypi/wuttademo/'.format(filename))
# TODO: or, uncomment this to upload to *public* PyPI
#c.run('twine upload dist/{}'.format(filename))