Skip to content

Commit 0379b59

Browse files
authored
Merge pull request #5 from muellerzr/master
Break up sections in settings.ini to be more readable
2 parents e538c72 + c08ca5a commit 0379b59

File tree

1 file changed

+28
-24
lines changed

1 file changed

+28
-24
lines changed

settings.ini

Lines changed: 28 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,45 @@
11
[DEFAULT]
22
# All sections below are required unless otherwise specified
33
# see https://github.com/fastai/nbdev/blob/master/settings.ini for examples
4-
host = github
4+
5+
### Python Library ###
56
lib_name = {lib_name}
6-
description = {description}
7-
copyright = Put your copyright info here
8-
keywords = {keywords}
9-
user = {user}
10-
author = {author}
11-
author_email = {author_email}
7+
min_python = 3.9
8+
version = 0.0.1
9+
10+
### OPTIONAL ###
11+
12+
# requirements = fastcore pandas
13+
# dev_requirements =
14+
# console_scripts =
15+
16+
### nbdev ###
17+
nbs_path = .
18+
doc_path = _docs
19+
recursive = False
20+
tst_flags = notest
21+
22+
### Documentation ###
23+
host = github
1224
repo = {repo}
1325
branch = {branch}
14-
version = 0.0.1
15-
min_python = 3.9
26+
custom_sidebar = False
27+
28+
### PyPI ###
1629
audience = Developers
30+
author = {author}
31+
author_email = {author_email}
32+
copyright = Put your copyright info here
33+
description = {description}
34+
keywords = {keywords}
1735
language = English
18-
custom_sidebar = False
1936
license = apache2
2037
status = 2
21-
nbs_path = .
22-
doc_path = _docs
23-
recursive = False
24-
tst_flags = notest
38+
user = {user}
2539

2640
### Inferred From Other Values ###
2741
doc_host = https://%(user)s.github.io
2842
doc_baseurl = /%(lib_name)s/
2943
git_url = https://github.com/%(user)s/%(repo)s/
3044
lib_path = %(lib_name)s
3145
title = %(lib_name)s
32-
33-
### OPTIONAL ### see https://github.com/fastai/nbdev/blob/master/settings.ini for examples
34-
35-
# requirements = fastcore pandas
36-
# dev_requirements =
37-
# console_scripts =
38-
39-
40-
41-

0 commit comments

Comments
 (0)