summaryrefslogtreecommitdiff
path: root/make-manifest
diff options
context:
space:
mode:
authorJason Madden <jamadden@gmail.com>2020-11-12 11:49:12 -0600
committerJason Madden <jamadden@gmail.com>2020-11-12 11:49:12 -0600
commit8448b094d1b81788ac9cbaf86a184712f1daf5e0 (patch)
tree34e07251b520b94f44fd40136687bb059a08e256 /make-manifest
parentc80fab93073603289f41df8e32b7ecc25f37763e (diff)
downloadgreenlet-issue184.tar.gz
Move to the src/ layout, and make greenlet a package.issue184
Make 'tests' become 'greenlet.tests', and be compatible with 'python -m unittest discover'. Fixes #184. Fixes #184. Fixes #189.
Diffstat (limited to 'make-manifest')
-rwxr-xr-xmake-manifest21
1 files changed, 0 insertions, 21 deletions
diff --git a/make-manifest b/make-manifest
deleted file mode 100755
index d9a3158..0000000
--- a/make-manifest
+++ /dev/null
@@ -1,21 +0,0 @@
-#! /usr/bin/env python
-
-# this file can be used as pre-commit hook with the following command:
-#
-# ln -sf ../../make-manifest .git/hooks/pre-commit
-#
-
-import os
-
-
-def main():
- files = sorted(set([x.strip() for x in os.popen("git ls-files")]) -
- set(("make-manifest", ".gitignore")))
- with open("MANIFEST.in", "w") as f:
- for x in files:
- f.write("include %s\n" % x)
-
- os.system("git add MANIFEST.in; git diff --cached MANIFEST.in | cat")
-
-if __name__ == '__main__':
- main()