Skip to content

Commit 8df5fe3

Browse files
committed
refactor: rename long description variable
1 parent 39badac commit 8df5fe3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33

44
with open("README.md", "r") as readme:
5-
long_description = readme.read()
5+
readme_contents = readme.read()
66

77

88
setup(
99
name='kingorm',
1010
version='1.0.0',
1111
description='King is an ORM for Python and SQLite. It is designed to be a lightweight solution for simple programs, where objects have to be stored. A programmer just needs to define fields in the model classes and that\'s it!',
12-
long_description=long_description,
12+
long_description=readme_contents,
1313
long_description_content_type="text/markdown",
1414
url='https://github.com/king-orm/orm/',
1515
author='Anatoly Frolov',

0 commit comments

Comments
 (0)