Fix VERSION file location
setup.py
14 | 14 | command = ["make" "fonts"] | |
15 | 15 | subprocess.check_call(command) | |
16 | 16 | ||
17 | - | version_file = open(os.path.join(os.path.dirname(os.path.realpath(__file__)), 'offlate', 'VERSION')) | |
17 | + | version_file = open(os.path.join(os.path.dirname(os.path.realpath(__file__)), 'offlate', 'data', 'VERSION')) | |
18 | 18 | version = version_file.read().strip() | |
19 | 19 | ||
20 | 20 | setup ( | |
… | |||
32 | 32 | }, | |
33 | 33 | ||
34 | 34 | package_data={'offlate': ['data/data.json', 'locales/*.qm', 'locales/*.ts', | |
35 | - | 'ui/data/icon.png', 'ui/data/whitespace.ttf', 'data/VERSION']}, | |
35 | + | 'ui/data/icon.png', 'ui/data/whitespace.ttf', 'ui/data/whitespace-mono.ttf', | |
36 | + | 'data/VERSION']}, | |
36 | 37 | cmdclass={ | |
37 | 38 | 'locales': LocalesCommand, | |
38 | 39 | 'fonts': FontsCommand, |