-
Notifications
You must be signed in to change notification settings - Fork 19
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 #5 from muellerzr/master
Break up sections in settings.ini to be more readable
- Loading branch information
Showing
1 changed file
with
28 additions
and
24 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,41 +1,45 @@ | ||
[DEFAULT] | ||
# All sections below are required unless otherwise specified | ||
# see https://github.com/fastai/nbdev/blob/master/settings.ini for examples | ||
host = github | ||
|
||
### Python Library ### | ||
lib_name = {lib_name} | ||
description = {description} | ||
copyright = Put your copyright info here | ||
keywords = {keywords} | ||
user = {user} | ||
author = {author} | ||
author_email = {author_email} | ||
min_python = 3.9 | ||
version = 0.0.1 | ||
|
||
### OPTIONAL ### | ||
|
||
# requirements = fastcore pandas | ||
# dev_requirements = | ||
# console_scripts = | ||
|
||
### nbdev ### | ||
nbs_path = . | ||
doc_path = _docs | ||
recursive = False | ||
tst_flags = notest | ||
|
||
### Documentation ### | ||
host = github | ||
repo = {repo} | ||
branch = {branch} | ||
version = 0.0.1 | ||
min_python = 3.9 | ||
custom_sidebar = False | ||
|
||
### PyPI ### | ||
audience = Developers | ||
author = {author} | ||
author_email = {author_email} | ||
copyright = Put your copyright info here | ||
description = {description} | ||
keywords = {keywords} | ||
language = English | ||
custom_sidebar = False | ||
license = apache2 | ||
status = 2 | ||
nbs_path = . | ||
doc_path = _docs | ||
recursive = False | ||
tst_flags = notest | ||
user = {user} | ||
|
||
### Inferred From Other Values ### | ||
doc_host = https://%(user)s.github.io | ||
doc_baseurl = /%(lib_name)s/ | ||
git_url = https://github.com/%(user)s/%(repo)s/ | ||
lib_path = %(lib_name)s | ||
title = %(lib_name)s | ||
|
||
### OPTIONAL ### see https://github.com/fastai/nbdev/blob/master/settings.ini for examples | ||
|
||
# requirements = fastcore pandas | ||
# dev_requirements = | ||
# console_scripts = | ||
|
||
|
||
|
||
|