diff options
| author | Cody Logan <clpo13@gmail.com> | 2020-01-28 13:50:01 -0800 |
|---|---|---|
| committer | Cody Logan <clpo13@gmail.com> | 2020-01-28 13:50:01 -0800 |
| commit | 21bd3641d69a8558fd75195a76ead8f07101768a (patch) | |
| tree | 6ee9a9c4230f993c9db58212ff5dfdc5b73b8d35 /setup.py | |
| parent | 71f9b13025882512f150d9b167c4dc7f91ab3b5c (diff) | |
| download | wikiget-21bd3641d69a8558fd75195a76ead8f07101768a.tar.gz wikiget-21bd3641d69a8558fd75195a76ead8f07101768a.zip | |
Split main file into separate chunks
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -26,13 +26,13 @@ here = path.abspath(path.dirname(__file__)) with open(path.join(here, 'README.md'), 'r') as fr: long_description = fr.read() -version = {} +version_file = {} with open(path.join(here, 'wikiget', 'version.py'), 'r') as fv: - exec(fv.read(), version) + exec(fv.read(), version_file) setup( name='wikiget', - version=version['__version__'], + version=version_file['__version__'], author='Cody Logan', author_email='clpo13@gmail.com', description='CLI tool for downloading files from MediaWiki sites', |
