Skip to content
Snippets Groups Projects
Commit 94f07cde authored by inso's avatar inso
Browse files

Merge branch 'master' into dev

parents 85cab569 01edbd03
Branches
Tags
No related merge requests found
from setuptools import setup, find_packages
import os
import re
import subprocess
import sys
sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), 'src')))
import sakia
......@@ -30,6 +31,13 @@ def which(program):
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)*))$')
install_requires = []
......
__version_info__ = ('0', '330', '')
__version_info__ = ('0', '33', '0rc6')
__version__ = '.'.join(__version_info__)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment