pypiserver/make-manifest

23 lines
599 B
Plaintext
Raw Normal View History

2011-07-29 02:02:28 +02:00
#! /usr/bin/env python
# please install this file as pre-commit hook with the following command:
#
# ln -sf ../../make-manifest .git/hooks/pre-commit
#
2011-07-29 02:02:28 +02:00
import os
2011-07-29 02:41:27 +02:00
2011-07-29 02:02:28 +02:00
def main():
files = sorted(set([x.strip() for x in os.popen("git ls-files")]) -
set(("make-manifest", "commit-standalone",
2014-01-07 16:53:25 +01:00
"vendor", ".gitmodules", ".travis.yml")))
with open("MANIFEST.in", "w") as f:
for x in files:
f.write("include %s\n" % x)
2011-07-29 02:02:28 +02:00
os.system("git add MANIFEST.in; git diff --cached MANIFEST.in | cat")
2011-07-29 02:41:27 +02:00
if __name__ == '__main__':
2011-07-29 02:02:28 +02:00
main()