-
Notifications
You must be signed in to change notification settings - Fork 99
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #32 from fastai/fix-settings.ini-template
Update settings.ini so template values get filled in
- Loading branch information
Showing
1 changed file
with
5 additions
and
5 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
[DEFAULT] | ||
# All sections below are required unless otherwise specified | ||
host = github | ||
lib_name = nbdev_template | ||
lib_name = {lib_name} | ||
# For Enterprise Git add variable repo_name and company name | ||
# repo_name = analytics | ||
# company_name = nike | ||
|
||
user = fastai | ||
user = {user} | ||
# description = A description of your project | ||
# keywords = some keywords | ||
# author = Your Name | ||
# author_email = [email protected] | ||
author = {user} | ||
author_email = {author_email} | ||
# copyright = Your Name or Company Name | ||
branch = master | ||
branch = {branch} | ||
version = 0.0.1 | ||
min_python = 3.6 | ||
audience = Developers | ||
|