New build
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
name = "Socializer"
|
||||
version = "0.12"
|
||||
version = "0.13"
|
||||
author = u"Manuel Cortéz"
|
||||
authorEmail = "manuel@manuelcortez.net"
|
||||
copyright = u"Copyright (C) 2016, Manuel cortéz."
|
||||
|
20
src/setup.py
20
src/setup.py
@@ -57,16 +57,16 @@ def get_documentation ():
|
||||
depth -= 1
|
||||
return answer
|
||||
|
||||
def get_sounds(): return []
|
||||
# answer = []
|
||||
# depth = 6
|
||||
# for root, dirs, files in os.walk('sounds'):
|
||||
# if depth == 0:
|
||||
# break
|
||||
# new = (root, glob(os.path.join(root, "*.ogg")))
|
||||
# answer.append(new)
|
||||
# depth -= 1
|
||||
# return answer
|
||||
def get_sounds():
|
||||
answer = []
|
||||
depth = 6
|
||||
for root, dirs, files in os.walk('sounds'):
|
||||
if depth == 0:
|
||||
break
|
||||
new = (root, glob(os.path.join(root, "*.ogg")))
|
||||
answer.append(new)
|
||||
depth -= 1
|
||||
return answer
|
||||
|
||||
def get_locales():
|
||||
answer = []
|
||||
|
Reference in New Issue
Block a user