Skip to content

Commit

Permalink
fix: read version from file at build time
Browse files Browse the repository at this point in the history
  • Loading branch information
ctreatma committed Jul 23, 2024
1 parent 71e02f6 commit bba5e2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools
NAME = "equinix"
VERSION = "0.1.0"
VERSION = open('version').read()
PYTHON_REQUIRES = ">=3.7"
REQUIRES = [
"urllib3 >= 1.25.3, < 2.1.0",
Expand Down

0 comments on commit bba5e2c

Please sign in to comment.