Skip to content

Commit

Permalink
chore: Add version files to repo.
Browse files Browse the repository at this point in the history
  • Loading branch information
bvanelli committed Jul 6, 2024
1 parent 5d692f8 commit 956579b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions actual/version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
__version_info__ = ("0", "1", "0")
__version__ = ".".join(__version_info__)
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
from setuptools import find_packages, setup

__version__ = "" # avoid linting issues on the file, but the line below will fill in the version
exec(open("actual/version.py").read())
setup(
name="actual",
version="0.0.1",
version=__version__,
packages=find_packages(),
description="Implementation of the Actual API to interact with Actual over Python.",
long_description=open("README.md").read(),
Expand Down

0 comments on commit 956579b

Please sign in to comment.