Compare commits

...

2 commits

Author SHA1 Message Date
Lance Edgar a82d729246 build: cleanup release task 2024-11-24 20:55:51 -06:00
Lance Edgar 0dd3169247 update changelog 2024-11-24 20:55:12 -06:00
3 changed files with 10 additions and 19 deletions

1
.gitignore vendored
View file

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

View file

@ -5,6 +5,8 @@ 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/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
## [0.1.0] - ??
### Added
- Initial version.
## v0.1.0 (2024-11-24)
### Feat
- initial version

View file

@ -9,25 +9,13 @@ import shutil
from invoke import task
here = os.path.abspath(os.path.dirname(__file__))
exec(open(os.path.join(here, 'wuttademo', '_version.py')).read())
@task
def release(c):
"""
Release a new version of Wutta Demo
"""
# rebuild local tar.gz file for distribution
if os.path.exists('Wutta_Demo.egg-info'):
shutil.rmtree('Wutta_Demo.egg-info')
if os.path.exists('dist'):
shutil.rmtree('dist')
c.run('python -m build --sdist')
# 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))
c.run('twine upload dist/*')