Skip to content
Snippets Groups Projects
Commit 01edbd03 authored by inso's avatar inso
Browse files

Fix setup.py

parent 86e65274
No related branches found
No related tags found
No related merge requests found
from setuptools import setup, find_packages from setuptools import setup, find_packages
import os import os
import re import re
import subprocess
import sys import sys
sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), 'src'))) sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), 'src')))
import sakia import sakia
...@@ -26,6 +27,17 @@ def which(program): ...@@ -26,6 +27,17 @@ def which(program):
return None return None
path = os.path.abspath(os.path.join(os.path.dirname(__file__)))
subprocess.call(
"python {0}/gen_resources.py".format(path), shell=True
)
subprocess.call(
"python {0}/gen_translations.py".format(path), shell=True
)
EDITABLE_REQUIREMENT = re.compile(r'^-e (?P<link>(?P<vcs>git|svn|hg|bzr).+#egg=(?P<package>.+)-(?P<version>\d(?:\.\d)*))$') EDITABLE_REQUIREMENT = re.compile(r'^-e (?P<link>(?P<vcs>git|svn|hg|bzr).+#egg=(?P<package>.+)-(?P<version>\d(?:\.\d)*))$')
install_requires = [] install_requires = []
......
  • inso @Insoleet

    mentioned in commit a1f2f7c7

    ·

    mentioned in commit a1f2f7c7

    Toggle commit list
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment