Skip to content

Commit

Permalink
Merge branch 'working'
Browse files Browse the repository at this point in the history
  • Loading branch information
dagraham committed Dec 25, 2024
2 parents e5002bd + 34736c9 commit 60b50bf
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 7 deletions.
12 changes: 6 additions & 6 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
Recent tagged changes as of 2024-12-25 12:56:14.612729:
- 0 seconds ago (HEAD -> working, tag: 0.0.16) Daniel Graham
Recent tagged changes as of 2024-12-25 13:05:29.623690:
- 0 seconds ago (HEAD -> working, tag: 0.0.17) Daniel Graham
f8677ea 2024-12-25 13:05:29 -0500
Tagged version 0.0.17.

- 9 minutes ago (tag: 0.0.16) Daniel Graham
040ad27 2024-12-25 12:56:14 -0500
Tagged version 0.0.16.

Expand Down Expand Up @@ -74,7 +78,3 @@ Recent tagged changes as of 2024-12-25 12:56:14.612729:
- 12 days ago (tag: 0.0.0rc6) Daniel Graham
b540cb0 2024-12-13 13:52:34 -0500
Tagged version 0.0.0rc6.

- 12 days ago (tag: 0.0.0rc5) Daniel Graham
0f4ad78 2024-12-13 13:41:35 -0500
Tagged version 0.0.0rc5.
2 changes: 1 addition & 1 deletion modules/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = '0.0.16'
version = '0.0.17'
12 changes: 12 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,20 @@
import os

from setuptools import find_packages, setup
from setuptools.command.clean import clean as Clean

from modules.__version__ import version


class CleanCommand(Clean):
"""Custom clean command to tidy up the project root."""

def run(self):
Clean.run(self)
for directory in ["dist", "build", "*.egg-info"]:
os.system(f"rm -rf {directory}")


DESCRIPTION = "Record and report times spent in various activities."
here = os.path.abspath(os.path.dirname(__file__))

Expand All @@ -24,6 +35,7 @@
author="Daniel A Graham",
author_email="dnlgrhm@gmail.com",
packages=find_packages(),
cmdclass={"clean": CleanCommand},
install_requires=[
"click",
"click-shell",
Expand Down

0 comments on commit 60b50bf

Please sign in to comment.