| OLD | NEW |
| 1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
| 2 # -*- coding: ascii -*- | 2 # -*- coding: ascii -*- |
| 3 # | 3 # |
| 4 # Copyright 2006 - 2013 | 4 # Copyright 2006 - 2013 |
| 5 # Andr\xe9 Malo or his licensors, as applicable | 5 # Andr\xe9 Malo or his licensors, as applicable |
| 6 # | 6 # |
| 7 # Licensed under the Apache License, Version 2.0 (the "License"); | 7 # Licensed under the Apache License, Version 2.0 (the "License"); |
| 8 # you may not use this file except in compliance with the License. | 8 # you may not use this file except in compliance with the License. |
| 9 # You may obtain a copy of the License at | 9 # You may obtain a copy of the License at |
| 10 # | 10 # |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 return run(script_args=args, ext=ext, manifest_only=_manifest) | 33 return run(script_args=args, ext=ext, manifest_only=_manifest) |
| 34 | 34 |
| 35 | 35 |
| 36 def manifest(): | 36 def manifest(): |
| 37 """ Create List of packaged files """ | 37 """ Create List of packaged files """ |
| 38 return setup((), _manifest=1) | 38 return setup((), _manifest=1) |
| 39 | 39 |
| 40 | 40 |
| 41 if __name__ == '__main__': | 41 if __name__ == '__main__': |
| 42 setup() | 42 setup() |
| OLD | NEW |