Fix setup and prepare for next release
offlate/ui/__init__.py unknown status 1
setup.py
9 | 9 | ||
10 | 10 | setup ( | |
11 | 11 | name="offlate", | |
12 | - | version="0.2.0", | |
12 | + | version="0.3.0", | |
13 | 13 | packages=find_packages(exclude=['.guix-profile*']), | |
14 | 14 | python_requires = '>=3', | |
15 | 15 | install_requires=['polib', 'ruamel.yaml', 'python-dateutil', 'PyQt5', 'pygit2', | |
16 | 16 | 'python-gitlab', 'translation-finder'], | |
17 | 17 | entry_points={ | |
18 | 18 | 'gui_scripts': [ | |
19 | - | 'offlate=offlate.window:main', | |
19 | + | 'offlate=offlate.ui.main:main', | |
20 | 20 | ] | |
21 | 21 | }, | |
22 | 22 |