25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213
  1. #!/usr/bin/python3
  2. import os, sys
  3. base_dir = sys.path[0]
  4. sys.path[0] = os.path.join(base_dir, "lib")
  5. print(sys.path)
  6. import invoice.cli
  7. if __name__ == '__main__':
  8. invoice.cli.Application(
  9. template_path = os.path.join(base_dir, "templates")
  10. ).run()