We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9a38b2 commit cc281f8Copy full SHA for cc281f8
setup.py
@@ -4,8 +4,9 @@
4
setup,
5
)
6
7
-__version__ = "v1.0.0"
+__version__ = "v1.0.1"
8
__author__ = "Tyler Bruno"
9
+_description = "Typed and Tested Modifiable Items Dict which allows keys and values to be modified at run time."
10
11
with open("README.md", "r", encoding="utf-8") as file:
12
README = file.read()
@@ -14,6 +15,7 @@
14
15
name="modifiable-items-dictionary",
16
version=__version__,
17
author=__author__,
18
+ description=_description,
19
long_description=README,
20
long_description_content_type="text/markdown",
21
keywords="python dict dictionary",
0 commit comments