File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed
Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -16,5 +16,5 @@ dynamic= [
1616]
1717
1818[build-system ]
19- requires = [" setuptools" , " wheel " ]
20- build-backend = " setuptools.build_meta:__legacy__ "
19+ requires = [" setuptools" ]
20+ build-backend = " setuptools.build_meta"
Original file line number Diff line number Diff line change 22from glob import glob
33import subprocess
44import os
5- from minigalaxy .version import VERSION
5+ import sys
6+
7+ sys .path .insert (0 , os .getcwd ())
8+ from minigalaxy .version import VERSION # noqa: E402
69
710# Generate the translations
811subprocess .run (['bash' , 'scripts/compile-translations.sh' ])
1518setup (
1619 name = "minigalaxy" ,
1720 version = VERSION ,
18- packages = find_packages (exclude = ['tests' ]),
21+ packages = find_packages (exclude = ['tests' , 'tests.*' ]),
1922 scripts = ['bin/minigalaxy' ],
2023
2124 data_files = [
You can’t perform that action at this time.
0 commit comments