Skip to content

Commit

Permalink
closes #75
Browse files Browse the repository at this point in the history
  • Loading branch information
hbaniecki committed Apr 3, 2024
1 parent 2fda73a commit 78c3f94
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
## Changelog


### v0.1.0 (2024-04-xx)

in development
8 changes: 5 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,11 @@ def get_version(rel_path):
delimiter = '"' if '"' in line else "'"
return line.split(delimiter)[1]


with open(os.path.join(work_directory, "README.md"), encoding="utf-8") as f:
long_description = "\n" + f.read()
readme = f.read()

with open(os.path.join(work_directory, 'CHANGELOG.md'), encoding='utf-8')as f:
changelog = f.read()

base_packages = ["numpy", "scipy", "pandas", "tqdm"]

Expand Down Expand Up @@ -59,7 +61,7 @@ def get_version(rel_path):
name=NAME,
version=get_version("shapiq/__init__.py"),
description=DESCRIPTION,
long_description=long_description,
long_description=u"\n\n".join([readme, changelog]),
long_description_content_type=LONG_DESCRIPTION_CONTENT_TYPE,
author=AUTHOR,
author_email=EMAIL,
Expand Down

0 comments on commit 78c3f94

Please sign in to comment.