67with open(pkg_path+"/"+pkg_name+"/python/__init__.py",'w') as f: pass
68 os.makedirs(pkg_path+"/"+pkg_name+"/data")
69with open(pkg_path+"/"+pkg_name+"/data/ExampleData",'w') as f: f.write("this file will be accessible through PathResolverFindDataFile(\""+pkg_name+"/ExampleData\")")
70 os.makedirs(pkg_path+"/"+pkg_name+"/util")
71 os.makedirs(pkg_path+"/"+pkg_name+"/scripts")
72except OSError:
73print("ERROR while making directories for " % (pkg_path+"/"+pkg_name+"/src"))
74return -1
75
76
77with open(os.path.join(pkg_path+"/"+pkg_name,'CMakeLists.txt'), 'w') as req: