Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
esheldon committed Oct 12, 2022
1 parent 7b359fe commit 564bc39
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 8 deletions.
29 changes: 22 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,29 @@
from setuptools import setup
from glob import glob
import os

description = "A simple work queue"
description = 'A simple work queue'

__version__ = None

version_file = os.path.join(
os.path.dirname(os.path.realpath(__file__)),
'wq',
'version.py'
)
with open(version_file, 'r') as fp:
exec(fp.read())

scripts = glob('bin/*')
scripts = [s for s in scripts if '~' not in s]

setup(
name="wq",
version="0.2.0",
name='wq',
version=__version__,
description=description,
url="https://github.com/esheldon/wq",
author="Erin Scott Sheldon, Anze Slosar",
author_email="[email protected]",
scripts=["bin/wq"],
url='https://github.com/esheldon/wq',
author='Erin Scott Sheldon, Anze Slosar',
author_email='[email protected]',
scripts=scripts,
packages=['wq'],
)
2 changes: 1 addition & 1 deletion wq/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# flake8: noqa

__version__ = '0.9.0'
from .version import __version__

from . import server

Expand Down

0 comments on commit 564bc39

Please sign in to comment.