We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0da3208 commit 6f3e370Copy full SHA for 6f3e370
setup.py
@@ -33,12 +33,12 @@
33
shutil.copytree(os.path.join("artifacts", pkg_name), pkg_name)
34
35
shutil.rmtree("artifacts", ignore_errors=True)
36
-for name in os.listdir(pkg_name):
37
- path = os.path.join(pkg_name, name)
38
- if "pb2" in path:
39
- os.remove(path)
40
- else:
41
- print(path + ' will be published')
+# for name in os.listdir(pkg_name):
+# path = os.path.join(pkg_name, name)
+# if "pb2" in path:
+# os.remove(path)
+# else:
+# print(path + ' will be published')
42
43
install_requires = []
44
with open(os.path.join(base_dir, "pkg_requires.txt"), "r+") as fd:
0 commit comments