-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsettings.ini
66 lines (59 loc) · 1.51 KB
/
settings.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[DEFAULT]
# All sections below are required unless otherwise specified.
# See https://github.com/fastai/nbdev/blob/master/settings.ini for examples.
### Python library ###
repo = docstring-gen
lib_name = %(repo)s
version = 0.4.0
min_python = 3.8
license = apache2
### nbdev ###
doc_path = _docs
lib_path = docstring_gen
nbs_path = nbs
recursive = True
tst_flags = notest
put_version_in_init = True
black_formatting = True
### Docs ###
branch = main
custom_sidebar = True
doc_host = https://%(user)s.github.io
doc_baseurl = /%(repo)s
git_url = https://github.com/%(user)s/%(repo)s
title = %(lib_name)s
### PyPI ###
audience = Developers
author = airt
author_email = [email protected]
copyright = 2023 onwards, %(author)s
description = Generate docstrings using OpenAI's Codex model.
keywords = nbdev jupyter notebook python mkdocs material docstring generator
language = English
status = 3
user = airtai
### Optional ###
requirements = \
nbformat>=5.7.1 \
typer[all]>=0.7.0 \
openai==0.27.2 \
mypy-extensions==1.0.0
dev_requirements = \
nbdev-mkdocs==0.2.2 \
bandit==1.7.4 \
semgrep==1.61.1 \
pytest==7.2.1 \
black==23.1.0 \
mypy==1.0.1 \
mkdocs==1.4.2 \
mkdocstrings[python]==0.20.0 \
mkdocs-material==9.1.1 \
mkdocs-literate-nav==0.6.0 \
mkdocs-section-index==0.3.5 \
configupdater==3.1.1 \
griffe==0.24.1 \
ruamel.yaml==0.17.21 \
playwright==1.32.0 \
pre-commit==2.21.0 \
detect-secrets==1.4.0 \
console_scripts = docstring_gen=docstring_gen._cli:_app