Skip to content

Commit

Permalink
packaging: use dynamic version from CI
Browse files Browse the repository at this point in the history
  • Loading branch information
glpatcern committed Aug 27, 2024
1 parent 4a8ec83 commit 053eef1
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,16 @@
"""

from setuptools import setup, find_packages
import os

with open("README.md", "r") as fh:
long_description = fh.read()

version = os.getenv("PACKAGE_VERSION", "0.0.0")

setup(
name="cs3client",
version=version,
author="Rasmus Welander, Diogo Castro, Giuseppe Lo Presti",
package_dir={"": "src"},
packages=find_packages(where="src"),
Expand Down

0 comments on commit 053eef1

Please sign in to comment.