We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3358106 commit 2f9238aCopy full SHA for 2f9238a
1 file changed
docs/conf.py
@@ -1,16 +1,20 @@
1
# -*- coding: utf-8 -*-
2
3
-import sys, os
+import sys
4
+import os
5
+import datetime
6
+
7
sys.path.append(os.path.abspath('../src'))
8
+import iptools
9
10
extensions = ['sphinx.ext.autodoc', 'sphinx.ext.viewcode']
11
templates_path = ['_templates']
12
source_suffix = '.rst'
13
master_doc = 'index'
-project = u'python-iptools'
-copyright = u'2012, Bryan Davis'
-version = '0.4.0'
-release = '0.4.0'
14
+project = 'python-iptools'
15
+copyright = '%s, Bryan Davis. All Rights Reserved' % datetime.date.today().year
16
+version = iptools.__version__
17
+release = version
18
exclude_patterns = ['_build']
19
pygments_style = 'sphinx'
20
0 commit comments