Compare commits

...

4 commits

Author SHA1 Message Date
Lance Edgar e677cd5d8c build: ignore dist folder 2025-01-06 17:38:12 -06:00
Lance Edgar dfaec14350 bump: version 0.0.0 → 0.1.0 2025-01-06 17:37:40 -06:00
Lance Edgar 85183180ab build: add release task 2025-01-06 17:35:31 -06:00
Lance Edgar 0171b9b1ed docs: set description, docs url in readme 2025-01-06 17:34:38 -06:00
4 changed files with 42 additions and 5 deletions

1
.gitignore vendored
View file

@ -1,5 +1,6 @@
*.pyc
*~
.coverage
dist/
docs/_build/
.tox/

9
CHANGELOG.md Normal file
View file

@ -0,0 +1,9 @@
## v0.1.0 (2025-01-06)
### Feat
- add basic "create order" feature, docs, tests
### Fix
- add static libcache files for vue2 + buefy

View file

@ -1,8 +1,10 @@
# Sideshow
This is a starter project based on
[WuttaWeb](https://wuttaproject.org).
This is a web app which provides retailers a way to track case/special
orders.
Full docs are at https://rattailproject.org/docs/sideshow/
## Quick Start
@ -13,6 +15,3 @@ Make a virtual environment and install the app:
source sideshow/bin/activate
pip install Sideshow
sideshow install
For more info see
https://rattailproject.org/docs/wuttjamaican/narr/install/index.html

28
tasks.py Normal file
View file

@ -0,0 +1,28 @@
# -*- coding: utf-8; -*-
"""
Tasks for Sideshow
"""
import os
import shutil
from invoke import task
@task
def release(c, skip_tests=False):
"""
Release a new version of Sideshow
"""
if not skip_tests:
c.run('pytest')
# rebuild pkg
if os.path.exists('dist'):
shutil.rmtree('dist')
if os.path.exists('Sideshow.egg-info'):
shutil.rmtree('Sideshow.egg-info')
c.run('python -m build --sdist')
# upload
c.run('twine upload dist/*')