Skip to content

Commit ae59c67

Browse files
committed
sync with commons
1 parent eafad6c commit ae59c67

File tree

6 files changed

+27
-17
lines changed

6 files changed

+27
-17
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2015-2016 by Onni Software Ltd. and its contributors
1+
Copyright (c) 2015-2017 by Onni Software Ltd. and its contributors
22
All rights reserved.
33

44
Redistribution and use in source and binary forms of the software as well

docs/source/conf.py

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
# -*- coding: utf-8 -*-
2+
DESCRIPTION = (
3+
'A generic request and response interface for pyexcel web extensions.' +
4+
''
5+
)
26
extensions = [
37
'sphinx.ext.autodoc',
48
'sphinx.ext.doctest',
@@ -15,25 +19,29 @@
1519
master_doc = 'index'
1620

1721
project = u'pyexcel-webio'
18-
copyright = u'2015-2016 Onni Software Ltd.'
19-
version = '0.0.9'
20-
release = '0.0.10'
22+
copyright = u'2015-2017 Onni Software Ltd.'
23+
version = '0.0.10'
24+
release = '0.0.11'
2125
exclude_patterns = []
2226
pygments_style = 'sphinx'
2327
html_theme = 'default'
2428
html_static_path = ['_static']
2529
htmlhelp_basename = 'pyexcel-webiodoc'
2630
latex_elements = {}
2731
latex_documents = [
28-
('index', 'pyexcel-webio.tex', u'pyexcel-webio Documentation',
32+
('index', 'pyexcel-webio.tex',
33+
'pyexcel-webio Documentation',
2934
'Onni Software Ltd.', 'manual'),
3035
]
3136
man_pages = [
32-
('index', 'pyexcel-webio', u'pyexcel-webio Documentation',
37+
('index', 'pyexcel-webio',
38+
'pyexcel-webio Documentation',
3339
[u'Onni Software Ltd.'], 1)
3440
]
3541
texinfo_documents = [
36-
('index', 'pyexcel-webio', u'pyexcel-webio Documentation',
37-
'Onni Software Ltd.', 'pyexcel-webio', 'One line description of project.',
42+
('index', 'pyexcel-webio',
43+
'pyexcel-webio Documentation',
44+
'Onni Software Ltd.', 'pyexcel-webio',
45+
DESCRIPTION,
3846
'Miscellaneous'),
3947
]

pyexcel_webio.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
overrides: "pyexcel.yaml"
22
name: "pyexcel-webio"
33
nick_name: webio
4-
version: 0.0.10
5-
release: 0.0.9
4+
version: 0.0.11
5+
release: 0.0.10
66
dependencies:
77
- pyexcel>=0.4.0
88
description:

setup.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
NAME = 'pyexcel-webio'
99
AUTHOR = 'C.W.'
10-
VERSION = '0.0.10'
10+
VERSION = '0.0.11'
1111
EMAIL = 'wangc_2011 (at) hotmail.com'
1212
LICENSE = 'New BSD'
1313
DESCRIPTION = (
@@ -28,6 +28,12 @@
2828
'Programming Language :: Python',
2929
'License :: OSI Approved :: BSD License',
3030
'Intended Audience :: Developers',
31+
'Programming Language :: Python :: 2.6',
32+
'Programming Language :: Python :: 2.7',
33+
'Programming Language :: Python :: 3.3',
34+
'Programming Language :: Python :: 3.4',
35+
'Programming Language :: Python :: 3.5',
36+
'Programming Language :: Python :: 3.6',
3137
'Environment :: Web Environment',
3238
'Topic :: Internet :: WWW/HTTP',
3339
'Topic :: Software Development :: Libraries :: Python Modules',

test.bat

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,2 @@
1-
2-
31
pip freeze
4-
nosetests --with-cov --cover-package pyexcel_webio --cover-package tests --with-doctest --doctest-extension=.rst tests README.rst docs/source pyexcel_webio && flake8 . --exclude=.moban.d --builtins=unicode,xrange,long
2+
nosetests --with-cov --cover-package pyexcel_webio --cover-package tests --with-doctest --doctest-extension=.rst README.rst tests docs/source pyexcel_webio && flake8 . --exclude=.moban.d --builtins=unicode,xrange,long

test.sh

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,2 @@
1-
2-
31
pip freeze
4-
nosetests --with-cov --cover-package pyexcel_webio --cover-package tests --with-doctest --doctest-extension=.rst tests README.rst docs/source pyexcel_webio && flake8 . --exclude=.moban.d --builtins=unicode,xrange,long
2+
nosetests --with-cov --cover-package pyexcel_webio --cover-package tests --with-doctest --doctest-extension=.rst README.rst tests docs/source pyexcel_webio && flake8 . --exclude=.moban.d --builtins=unicode,xrange,long

0 commit comments

Comments
 (0)