Created
July 23, 2018 07:57
-
-
Save alice1017/661da22b1852921e2084dfff00749c1d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[options] | |
# kind of license | |
license = "MIT" | |
# project dir will management by git | |
git = true | |
# the categories for generate .gitignore by gitignore.io | |
git-ignore = [ | |
"python", | |
"vim" | |
] | |
[structure] | |
# files of project directory | |
files = [ | |
"README.md", | |
"LICENSE", | |
"setup.py" | |
] | |
# directories in project directory | |
[structure.directories] | |
"{project}" = [ | |
"__init__.py", | |
"__main__.py" | |
] | |
tests = [ | |
"test_main.py" | |
] | |
[templates] | |
"setup.py" = "python-setup" | |
"__init__.py" = "python" | |
"__main__.py" = "python-main" | |
"README.md" = "readme-markdown" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment