Revision b6169894b904795a431391acd4508681d1c0f2e2 authored by Arun Maiya on 02 August 2022, 15:39:25 UTC, committed by Arun Maiya on 02 August 2022, 15:39:25 UTC
1 parent 6a2682c
Raw File
settings.ini
[DEFAULT]
# All sections below are required unless otherwise specified
host = github
lib_name = causalnlp 
# For Enterprise Git add variable repo_name and company name
# repo_name = analytics
# company_name = nike

user = amaiya
description = CausalNLP: A Practical Toolkit for Causal Inference with Text
keywords = causality nlp causal-inference natural-language-processing
author = Arun S. Maiya
author_email = arun@maiya.net
copyright = Arun S. Maiya
branch = main
version = 0.7.0
min_python = 3.6
audience = Developers
language = English
# Set to True if you want to create a more fancy sidebar.json than the default
custom_sidebar = False
# Add licenses and see current list in `setup.py`
license = apache2
# From 1-7: Planning Pre-Alpha Alpha Beta Production Mature Inactive
status = 2

# Optional. Same format as setuptools requirements
# note: torch and sentence-transformers are requested to be installed on-demand if using Analyzers, so they are not listed as requirements
requirements = transformers  pandas numpy>=1.18.5 scipy>=1.4.1 matplotlib pandas>=0.24.1 scikit-learn>=0.22.0 seaborn Cython>=0.28.0 xgboost tqdm lightgbm pygam packaging

# Optional. Same format as setuptools console_scripts
# console_scripts = 
# Optional. Same format as setuptools dependency-links
# dep_links = 

###
# You probably won't need to change anything under here,
#   unless you have some special requirements
###

# Change to, e.g. "nbs", to put your notebooks in nbs dir instead of repo root
nbs_path = nbs
doc_path = docs

# Whether to look for library notebooks recursively in the `nbs_path` dir
recursive = False

# Anything shown as '%(...)s' is substituted with that setting automatically
doc_host =  https://%(user)s.github.io
#For Enterprise Git pages use:  
#doc_host = https://pages.github.%(company_name)s.com.  


doc_baseurl = /%(lib_name)s/
# For Enterprise Github pages docs use:
# doc_baseurl = /%(repo_name)s/%(lib_name)s/

git_url = https://github.com/%(user)s/%(lib_name)s/tree/%(branch)s/
# For Enterprise Github use:
#git_url = https://github.%(company_name)s.com/%(repo_name)s/%(lib_name)s/tree/%(branch)s/



lib_path = %(lib_name)s
title = %(lib_name)s

#Optional advanced parameters
#Monospace docstings: adds <pre> tags around the doc strings, preserving newlines/indentation.
#monospace_docstrings = False
#Test flags: introduce here the test flags you want to use separated by |
tst_flags = notest 
#Custom sidebar: customize sidebar.json yourself for advanced sidebars (False/True)
#custom_sidebar = 
#Cell spacing: if you want cell blocks in code separated by more than one new line
#cell_spacing = 
#Custom jekyll styles: if you want more jekyll styles than tip/important/warning, set them here
#jekyll_styles = note,warning,tip,important
back to top