Guest User

Untitled

a guest
Jul 23rd, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. [options]
  2. # kind of license
  3. license = "MIT"
  4.  
  5. # project dir will management by git
  6. git = true
  7.  
  8. # the categories for generate .gitignore by gitignore.io
  9. git-ignore = [
  10. "python",
  11. "vim"
  12. ]
  13.  
  14. [structure]
  15.  
  16. # files of project directory
  17. files = [
  18. "README.md",
  19. "LICENSE",
  20. "setup.py"
  21. ]
  22.  
  23. # directories in project directory
  24. [structure.directories]
  25.  
  26. "{project}" = [
  27. "__init__.py",
  28. "__main__.py"
  29. ]
  30.  
  31. tests = [
  32. "test_main.py"
  33. ]
  34.  
  35. [templates]
  36.  
  37. "setup.py" = "python-setup"
  38. "__init__.py" = "python"
  39. "__main__.py" = "python-main"
  40. "README.md" = "readme-markdown"
Add Comment
Please, Sign In to add comment