We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea57c8b commit 061dadaCopy full SHA for 061dada
setup.py
@@ -9,6 +9,7 @@
9
10
11
__title__ = "py-vchart"
12
+__folder_title__ = "pyvchart"
13
__description__ = "python visualization sdk for @visactor/vchart"
14
__url__ = "https://github.com/VisActor/py-vchart"
15
__author_email__ = "shjkfld379978424@gmail.com"
@@ -24,7 +25,7 @@
24
25
# Load the package's _version.py module as a dictionary.
26
here = os.path.abspath(os.path.dirname(__file__))
27
about = {}
-with open(os.path.join(here, __title__, "_version.py")) as f:
28
+with open(os.path.join(here, __folder_title__, "_version.py")) as f:
29
exec(f.read(), about)
30
31
0 commit comments