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 be66b25 commit d1ebe07Copy full SHA for d1ebe07
gitanalyzer/__init__.py
@@ -0,0 +1 @@
1
+__version__ = "1.0.0"
setup.py
@@ -18,7 +18,7 @@ def load_requirements(file_name):
18
19
# Fetching the version from the package's __init__.py
20
def fetch_version():
21
- init_path = path.join(path.dirname(__file__), 'pydriller', '__init__.py')
+ init_path = path.join(path.dirname(__file__), 'gitanalyzer', '__init__.py')
22
with open(init_path) as file:
23
for line in file:
24
if line.startswith('__version__'):
0 commit comments