We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f0e7ae commit eb86124Copy full SHA for eb86124
setup.py
@@ -2,6 +2,7 @@
2
3
from setuptools import find_packages, setup
4
5
+VERSION = os.environ.get("VERSION", "1.0.0")
6
here = os.path.abspath(os.path.dirname(__file__))
7
README = open(os.path.join(here, "README.md")).read()
8
@@ -13,7 +14,7 @@
13
14
15
setup(
16
name="bashcolor",
- version="1.0.1",
17
+ version=VERSION,
18
description="A simple library to get colors in the bash terminal",
19
long_description=README,
20
classifiers=[
0 commit comments