mirror of
https://github.com/pypiserver/pypiserver
synced 2024-11-09 16:45:51 +01:00
be52ec1c40
python 2.5 needs an older webob version. so, we add the dependency in tox.ini. we use tox to run the tests on travis. remove python 3.3 from travis.yml as it's not there yet.
16 lines
415 B
Python
Executable File
16 lines
415 B
Python
Executable File
#! /usr/bin/env python
|
|
|
|
import os
|
|
|
|
|
|
def main():
|
|
files = sorted(set([x.strip() for x in os.popen("git ls-files")]) -
|
|
set(("make_manifest.py", "commit-standalone",
|
|
"vendor", ".gitmodules", ".travis.yml", ".travis-runtox.py")))
|
|
with open("MANIFEST.in", "w") as f:
|
|
for x in files:
|
|
f.write("include %s\n" % x)
|
|
|
|
if __name__ == '__main__':
|
|
main()
|