Skip to content

Commit

Permalink
version modification for GitHub actions
Browse files Browse the repository at this point in the history
  • Loading branch information
mikicanyelles committed Jan 25, 2024
1 parent 02c4233 commit a107616
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,12 @@
with open("README.md", "r") as f:
long_description = f.read()

#version='0.0.0'
version='{{VERSION_PLACEHOLDER}}'

setup(
name="EMDA",
version='{{VERSION_PLACEHOLDER}}',
vesion=version,
description="Easy MD Analysis (EMDA) is a Python package created with the aim of providing an easy, yet powerful way to perform analysis of MD simulations.",
long_description=long_description,
long_description_content_type="text/markdown",
Expand All @@ -16,5 +19,5 @@
install_requires=["numpy", "pyyaml", "MDAnalysis", "tqdm"],
keywords="biochemistry, simulations, MDAnalysis, molecular dynamics",
url="https://github.com/MolBioMedUAB/EMDA",
download_url="https://github.com/MolBioMedUAB/EMDA/archive/refs/tags/{{VERSION_PLACEHOLDER}}.tar.gz",
download_url=f"https://github.com/MolBioMedUAB/EMDA/archive/refs/tags/{version}.tar.gz",
)

0 comments on commit a107616

Please sign in to comment.