File tree Expand file tree Collapse file tree 6 files changed +20
-7
lines changed Expand file tree Collapse file tree 6 files changed +20
-7
lines changed Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ sphinx = "*"
2525sphinxcontrib-napoleon = " *"
2626setuptools = " *"
2727wheel = " *"
28+ sphinx-rtd-theme = " *"
2829
2930[requires ]
3031python_version = " 3.6"
Original file line number Diff line number Diff line change 55# This file does only contain a selection of the most common options. For a
66# full list see the documentation:
77# http://www.sphinx-doc.org/en/master/config
8+ from labelbox import __version__
89
910# -- Path setup --------------------------------------------------------------
1011
2021# -- Project information -----------------------------------------------------
2122
2223project = 'labelbox'
23- copyright = '2018, Feynman Liang '
24- author = 'Feynman Liang '
24+ copyright = '2018, Labelbox '
25+ author = 'Labelbox '
2526
2627# The short X.Y version
27- version = ''
28+ version = __version__
2829# The full version, including alpha/beta/rc tags
29- release = '0.0.1dev'
30+ release = __version__
3031
3132
3233# -- General configuration ---------------------------------------------------
7778# The theme to use for HTML and HTML Help pages. See the documentation for
7879# a list of builtin themes.
7980#
80- html_theme = 'alabaster '
81+ html_theme = 'sphinx_rtd_theme '
8182
8283# Theme options are theme-specific and customize the look and feel of a theme
8384# further. For a list of options available for each theme, see the
Original file line number Diff line number Diff line change 1+ __version__ = '0.0.2'
Original file line number Diff line number Diff line change 1+ build :
2+ image : latest
3+
4+ python :
5+ version : 3.6
6+ pip_install : true
Original file line number Diff line number Diff line change 11[metadata]
22name = labelbox
3- version = 0.0.2
43description = A python library for interacting with labelbox.com
54author = Feynman Liang
65author_email = feynman@labelbox.com
@@ -45,6 +44,10 @@ testing =
4544 pytest-cov
4645 tox
4746 xmltodict
47+ docs =
48+ mypy
49+ sphinx
50+ sphinxcontrib-napolean
4851
4952[options.packages.find]
5053include =
Original file line number Diff line number Diff line change 11from setuptools import setup
2+ from labelbox import __version__
23
34# configured in setup.cfg
4- setup ()
5+ setup (version = __version__ )
You can’t perform that action at this time.
0 commit comments