forked from bitprophet/pytest-relaxed
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
59ecb96
commit d783a09
Showing
6 changed files
with
60 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
.cache | ||
.coverage | ||
htmlcov | ||
docs/_build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
include LICENSE | ||
include README.rst | ||
include tasks.py | ||
recursive-include docs * | ||
recursive-exclude docs/_build * | ||
include dev-requirements.txt | ||
recursive-include tests * | ||
recursive-exclude tests *.pyc *.pyo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
========= | ||
Changelog | ||
========= | ||
|
||
- :release:`0.1.0 <2017-04-08>` | ||
- :feature:`-` Early draft functionality. This includes "releases" 0.0.1-0.0.4. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
from datetime import datetime | ||
import os | ||
import sys | ||
|
||
|
||
extensions = ['releases'] | ||
templates_path = ['_templates'] | ||
source_suffix = '.rst' | ||
master_doc = 'index' | ||
exclude_patterns = ['_build'] | ||
|
||
project = u'pytest-relaxed' | ||
year = datetime.now().year | ||
copyright = u'%d Jeff Forcier' % year | ||
|
||
# Ensure project directory is on PYTHONPATH for version, autodoc access | ||
sys.path.insert(0, os.path.abspath(os.path.join(os.getcwd(), '..'))) | ||
|
||
# Extension/theme settings | ||
html_theme_options = { | ||
'description': "Relaxed pytest discovery", | ||
'github_user': 'bitprophet', | ||
'github_repo': 'pytest-relaxed', | ||
'fixed_sidebar': True, | ||
} | ||
html_sidebars = { | ||
'**': [ | ||
'about.html', | ||
'navigation.html', | ||
'relations.html', | ||
'searchbox.html', | ||
'donate.html', | ||
] | ||
} | ||
# TODO: make it easier to configure this and alabaster at same time, jeez | ||
releases_github_path = 'bitprophet/pytest-relaxed' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
.. include:: ../README.rst | ||
|
||
.. toctree:: | ||
:hidden: | ||
:glob: | ||
|
||
* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters