File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 11Metadata-Version: 1.1
22Name: clid
3- Version: 0.6.3
3+ Version: 0.6.3.3
44Summary: Command line app based on ncurses to edit ID3 tags of mp3 files
55Home-page: https://github.com/GokulSoumya/clid
66Author: Gokul
Original file line number Diff line number Diff line change 11MANIFEST.in
2+ README.md
23setup.cfg
34setup.py
5+ clid/NEW.txt
46clid/__init__.py
57clid/__main__.py
68clid/_const.py
@@ -11,6 +13,7 @@ clid/editmeta.py
1113clid/main.py
1214clid/pref.py
1315clid/validators.py
16+ clid/version.py
1417clid.egg-info/PKG-INFO
1518clid.egg-info/SOURCES.txt
1619clid.egg-info/dependency_links.txt
Original file line number Diff line number Diff line change 55from setuptools import setup
66from setuptools .command .install import install
77
8- from clid import main
8+ from clid import version
99
1010if sys .version_info [0 ] != 3 :
1111 sys .exit ('clid requires Python3' )
@@ -61,7 +61,7 @@ def run(self):
6161
6262setup (
6363 name = 'clid' ,
64- version = main . __version__ ,
64+ version = version . version ,
6565 license = 'MIT' ,
6666
6767 packages = ['clid' ],
You can’t perform that action at this time.
0 commit comments