Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

settings.ini 2.4 KB

You have to be logged in to leave a comment. Sign In
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
67
68
69
70
71
72
73
74
75
  1. [DEFAULT]
  2. # All sections below are required unless otherwise specified
  3. host = github
  4. lib_name = github_search
  5. # For Enterprise Git add variable repo_name and company name
  6. # repo_name = analytics
  7. # company_name = nike
  8. user = lambdaofgod
  9. description = A description of your project
  10. keywords = some keywords
  11. author = lambdaofgod
  12. author_email = bartczukkuba@gmail.com
  13. copyright = lambdaofgod
  14. branch = master
  15. version = 0.0.1
  16. min_python = 3.6
  17. audience = Developers
  18. language = English
  19. # Set to True if you want to create a more fancy sidebar.json than the default
  20. custom_sidebar = False
  21. # Add licenses and see current list in `setup.py`
  22. license = apache2
  23. # From 1-7: Planning Pre-Alpha Alpha Beta Production Mature Inactive
  24. status = 2
  25. # Optional. Same format as setuptools requirements
  26. # requirements =
  27. # Optional. Same format as setuptools console_scripts
  28. # console_scripts =
  29. # Optional. Same format as setuptools dependency-links
  30. # dep_links =
  31. ###
  32. # You probably won't need to change anything under here,
  33. # unless you have some special requirements
  34. ###
  35. # Change to, e.g. "nbs", to put your notebooks in nbs dir instead of repo root
  36. nbs_path = notebooks
  37. doc_path = docs
  38. # Whether to look for library notebooks recursively in the `nbs_path` dir
  39. recursive = False
  40. # Anything shown as '%(...)s' is substituted with that setting automatically
  41. doc_host = https://%(user)s.github.io
  42. #For Enterprise Git pages use:
  43. #doc_host = https://pages.github.%(company_name)s.com.
  44. doc_baseurl = /%(lib_name)s/
  45. # For Enterprise Github pages docs use:
  46. # doc_baseurl = /%(repo_name)s/%(lib_name)s/
  47. git_url = https://github.com/%(user)s/%(lib_name)s/tree/%(branch)s/
  48. # For Enterprise Github use:
  49. #git_url = https://github.%(company_name)s.com/%(repo_name)s/%(lib_name)s/tree/%(branch)s/
  50. lib_path = %(lib_name)s
  51. title = %(lib_name)s
  52. #Optional advanced parameters
  53. #Monospace docstings: adds <pre> tags around the doc strings, preserving newlines/indentation.
  54. #monospace_docstrings = False
  55. #Test flags: introduce here the test flags you want to use separated by |
  56. #tst_flags =
  57. #Custom sidebar: customize sidebar.json yourself for advanced sidebars (False/True)
  58. #custom_sidebar =
  59. #Cell spacing: if you want cell blocks in code separated by more than one new line
  60. #cell_spacing =
  61. #Custom jekyll styles: if you want more jekyll styles than tip/important/warning, set them here
  62. #jekyll_styles = note,warning,tip,important
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...