mirror of
https://github.com/kennethreitz/clint.git
synced 2026-06-05 06:46:16 +00:00
fix gitignore and docs
This commit is contained in:
+36
-10
@@ -1,11 +1,37 @@
|
|||||||
.idea
|
*.py[cod]
|
||||||
.project
|
|
||||||
.settings
|
|
||||||
.pydevproject
|
|
||||||
MANIFEST
|
|
||||||
*.pyc
|
|
||||||
.tox
|
|
||||||
build/
|
|
||||||
clint.egg-info/
|
|
||||||
dist/
|
|
||||||
|
|
||||||
|
# Packages
|
||||||
|
*.egg
|
||||||
|
*.egg-info
|
||||||
|
dist
|
||||||
|
build
|
||||||
|
eggs
|
||||||
|
parts
|
||||||
|
bin
|
||||||
|
var
|
||||||
|
sdist
|
||||||
|
develop-eggs
|
||||||
|
.installed.cfg
|
||||||
|
lib
|
||||||
|
lib64
|
||||||
|
|
||||||
|
# Installer logs
|
||||||
|
pip-log.txt
|
||||||
|
|
||||||
|
# Unit test / coverage reports
|
||||||
|
.coverage
|
||||||
|
.tox
|
||||||
|
nosetests.xml
|
||||||
|
|
||||||
|
# Translations
|
||||||
|
*.mo
|
||||||
|
|
||||||
|
# Mr Developer
|
||||||
|
.mr.developer.cfg
|
||||||
|
.project
|
||||||
|
.pydevproject
|
||||||
|
|
||||||
|
*.DS_Store
|
||||||
|
*.dylib
|
||||||
|
.idea/
|
||||||
|
docs/_*
|
||||||
|
|||||||
@@ -1 +0,0 @@
|
|||||||
_build/*
|
|
||||||
Vendored
Vendored
@@ -1,3 +0,0 @@
|
|||||||
*.pyc
|
|
||||||
*.pyo
|
|
||||||
.DS_Store
|
|
||||||
+2
-2
@@ -19,7 +19,7 @@ import clint
|
|||||||
# If extensions (or modules to document with autodoc) are in another directory,
|
# If extensions (or modules to document with autodoc) are in another directory,
|
||||||
# add these directories to sys.path here. If the directory is relative to the
|
# add these directories to sys.path here. If the directory is relative to the
|
||||||
# documentation root, use os.path.abspath to make it absolute, like shown here.
|
# documentation root, use os.path.abspath to make it absolute, like shown here.
|
||||||
sys.path.append(os.path.abspath('_themes'))
|
sys.path.append(os.path.abspath('themes'))
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -104,7 +104,7 @@ html_theme = 'kr'
|
|||||||
#html_theme_options = {}
|
#html_theme_options = {}
|
||||||
|
|
||||||
# Add any paths that contain custom themes here, relative to this directory.
|
# Add any paths that contain custom themes here, relative to this directory.
|
||||||
html_theme_path = ['_themes']
|
html_theme_path = ['themes']
|
||||||
|
|
||||||
# The name for this set of Sphinx documents. If None, it defaults to
|
# The name for this set of Sphinx documents. If None, it defaults to
|
||||||
# "<project> v<release> documentation".
|
# "<project> v<release> documentation".
|
||||||
|
|||||||
Reference in New Issue
Block a user