static resources

This commit is contained in:
ed 2019-06-02 14:16:53 +00:00
parent b59deb8d8d
commit afa4216591
9 changed files with 82 additions and 15 deletions

View file

@ -37,10 +37,11 @@ VERSION = None
data_files = [("share/doc/copyparty", ["README.rst", "README.md", "LICENSE"])]
manifest = ""
for dontcare, files in data_files:
# print(dontcare)
for fn in files:
manifest += "include {0}\n".format(fn)
manifest += "recursive-include copyparty/web *\n"
here = os.path.abspath(os.path.dirname(__file__))
with open(here + "/MANIFEST.in", "wb") as f: