Skip to content

Commit

Permalink
v0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
alanhamlett committed Aug 30, 2022
1 parent cf4387d commit 469f6c2
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 8 deletions.
5 changes: 5 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# CHANGES

## 0.0.1 (2022-08-30)

Initial release
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
include README.md LICENSE HISTORY.md requirements/*.txt
include README.md LICENSE CHANGES.md requirements.txt
recursive-include src/wakaq *.py
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ Distributed background task queue for Python backed by Redis, a super minimal Ce

Want more features like rate limiting, task deduplication, etc? Too bad, feature PRs are not accepted. Maximal features belong in your app’s worker tasks.

## Installing

pip install wakaq

## Example

```python
Expand Down
File renamed without changes.
6 changes: 0 additions & 6 deletions requirements/tests.in

This file was deleted.

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
with open("wakaq/__about__.py") as f:
exec(f.read(), about)

install_requires = [x.strip() for x in open("requirements/release.txt").readlines()]
install_requires = [x.strip() for x in open("requirements.txt").readlines()]

setup(
name=about["__title__"],
Expand Down

0 comments on commit 469f6c2

Please sign in to comment.