Skip to content
This repository was archived by the owner on Aug 25, 2024. It is now read-only.

Commit 2cb7c25

Browse files
author
John Andersen
committed
setup: Capitalize version and readme
Signed-off-by: John Andersen <john.s.andersen@intel.com>
1 parent e27321a commit 2cb7c25

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,17 @@
77
with open("dffml/version.py", "r") as f:
88
for line in f:
99
if line.startswith("VERSION"):
10-
version = ast.literal_eval(line.strip().split("=")[-1].strip())
10+
VERSION = ast.literal_eval(line.strip().split("=")[-1].strip())
1111
break
1212

1313
with open("README.md", "r", encoding="utf-8") as f:
14-
readme = f.read()
14+
README = f.read()
1515

1616
setup(
1717
name="dffml",
18-
version=version,
18+
version=VERSION,
1919
description="Data Flow Facilitator for Machine Learning",
20-
long_description=readme,
20+
long_description=README,
2121
long_description_content_type="text/markdown",
2222
author="John Andersen",
2323
author_email="john.s.andersen@intel.com",

0 commit comments

Comments
 (0)