Skip to content

Commit

Permalink
Chore: Use VERSION variable outside setup function
Browse files Browse the repository at this point in the history
  • Loading branch information
(David) Siu-Kei Muk committed Jun 18, 2021
1 parent 1b778ea commit 2dd145a
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions setup.py
Expand Up @@ -24,17 +24,20 @@
with open("requirements.txt", "r") as fin:
requirements = [line.strip() for line in fin]

VERSION = "0.2.3"

setuptools.setup(
name="merak",
version="0.2.3",
version=VERSION,
author="(David) Siu-Kei Muk",
author_email="david.muk@protonmail.com",
license="Apache 2.0",
description="Python binary package builder (via Cython)",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/dave-msk/merak",
download_url="https://github.com/dave-msk/merak/archive/v0.2.2.tar.gz",
download_url="https://github.com/dave-msk/merak/archive/v{}.tar.gz"
.format(VERSION),
keywords=["merak", "cython", "binary", "package", "build"],
classifiers=[
"Development Status :: 4 - Beta",
Expand Down

0 comments on commit 2dd145a

Please sign in to comment.