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 60b50bf + 93f97cf commit 3b8870f
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 13 deletions.
14 changes: 7 additions & 7 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
Recent tagged changes as of 2024-12-25 13:05:29.623690:
- 0 seconds ago (HEAD -> working, tag: 0.0.17) Daniel Graham
Recent tagged changes as of 2024-12-25 13:12:30.710234:
- 0 seconds ago (HEAD -> working, tag: 0.0.18) Daniel Graham
d202d08 2024-12-25 13:12:30 -0500
Tagged version 0.0.18.

- 7 minutes ago (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
- 16 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 13:05:29.623690:
- 12 days ago (tag: 0.0.0rc7) Daniel Graham
7b8b706 2024-12-13 16:27:07 -0500
Tagged version 0.0.0rc7.

- 12 days ago (tag: 0.0.0rc6) Daniel Graham
b540cb0 2024-12-13 13:52:34 -0500
Tagged version 0.0.0rc6.
2 changes: 1 addition & 1 deletion modules/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = '0.0.17'
version = '0.0.18'
22 changes: 17 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,19 +1,31 @@
import io
import os
import shutil

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

from modules.__version__ import version


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

user_options = []

def initialize_options(self):
pass

def finalize_options(self):
pass

def run(self):
Clean.run(self)
for directory in ["dist", "build", "*.egg-info"]:
os.system(f"rm -rf {directory}")
if os.path.isdir(directory):
print(f"Removing directory: {directory}")
shutil.rmtree(directory)
elif os.path.isfile(directory):
print(f"Removing file: {directory}")
os.remove(directory)


DESCRIPTION = "Record and report times spent in various activities."
Expand Down

0 comments on commit 3b8870f

Please sign in to comment.