trash-cli-core 0.1.0

Shared Rust foundation for trash-cli command migration
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env python
from __future__ import print_function

if __name__ == '__main__':
    import os
    import sys

    root = os.path.realpath(os.path.join(__file__, "..", ".."))
    sys.path.insert(0, root)
    from tests.support.tools.bump_main import main

    main()