-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove duplicated information scattered around pyexcel and its compon…
…ents
- Loading branch information
Showing
15 changed files
with
122 additions
and
44 deletions.
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{%extends 'README.rst.jj2' %} | ||
|
||
{%block description%} | ||
**pyexcel-ods** is a tiny wrapper library to read, manipulate and write data in | ||
ods fromat using python 2.6 and python 2.7. You are likely to use it with | ||
`pyexcel <https://github.com/pyexcel/pyexcel>`_. | ||
`pyexcel-ods3 <https://github.com/pyexcel/pyexcel-ods3>`_ is a sister library that | ||
does the same thing but supports Python 3.3 and 3.4 and depends on lxml. | ||
{%endblock%} | ||
|
||
{%block extras %} | ||
Credits | ||
================================================================================ | ||
|
||
ODSReader is originally written by `Marco Conti <https://github.com/marcoconti83/read-ods-with-odfpy>`_ | ||
{%endblock%} |
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,3 @@ | ||
{% for dependency in dependencies: %} | ||
{{dependency}} | ||
{% endfor %} |
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,23 @@ | ||
{% extends 'setup.py.jj2' %} | ||
|
||
{%block additional_keywords%} | ||
"plain", | ||
"simple", | ||
"grid", | ||
"pipe", | ||
"orgtbl", | ||
"rst", | ||
"mediawiki", | ||
"latex", | ||
"latex_booktabs", | ||
"json" | ||
{%endblock%} | ||
|
||
{%block additional_classifiers%} | ||
'Development Status :: 3 - Alpha', | ||
'Programming Language :: Python :: 2.7', | ||
'Programming Language :: Python :: 3.3', | ||
'Programming Language :: Python :: 3.4', | ||
'Programming Language :: Python :: Implementation :: PyPy' | ||
{%endblock%}} | ||
|
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,4 @@ | ||
{% extends 'tests/requirements.txt.jj2' %} | ||
{%block extras %} | ||
pyexcel | ||
{%endblock%} |
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,5 @@ | ||
{% extends "travis.yml.jj2" %} | ||
|
||
{%block test_other_python_versions%} - 2.6 | ||
{%endblock%} | ||
|
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
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
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,2 +1 @@ | ||
include README.rst | ||
include VERSION |
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
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,13 @@ | ||
from os import path, system | ||
|
||
config_dir = 'commons/config' | ||
template_dir = 'commons/templates' | ||
|
||
if not path.exists("commons"): | ||
system("git clone https://github.com/pyexcel/pyexcel-commons.git commons") | ||
system("moban -cd {0} -td {1} .moban.d -t setup.py -o setup.py -c moban.yaml".format(config_dir, template_dir)) | ||
system("moban -cd {0} -td {1} .moban.d -t travis.yml -o .travis.yml -c moban.yaml".format(config_dir, template_dir)) | ||
system("moban -cd {0} -td .moban.d -t requirements.txt -o requirements.txt -c moban.yaml".format(config_dir)) | ||
system("moban -cd {0} -td {1} -t LICENSE.jj2 -o LICENSE -c moban.yaml".format(config_dir, template_dir)) | ||
system("moban -cd {0} -td {1} .moban.d -t tests/requirements.txt -o tests/requirements.txt -c moban.yaml".format(config_dir, template_dir)) | ||
system("moban -cd {0} -td {1} .moban.d -t MANIFEST.in.jj2 -o MANIFEST.in -c moban.yaml".format(config_dir, template_dir)) |
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,10 @@ | ||
overrides: "pyexcel.yaml" | ||
name: "pyexcel-text" | ||
nick_name: text | ||
version: 0.1.1 | ||
file_type: text | ||
dependencies: | ||
- pyexcel>=0.2.0 | ||
- tabulate | ||
description: | | ||
A plugin to pyexcel and provides the capbility to present and write data in text fromats |
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,2 @@ | ||
pyexcel-io>=0.1.0 | ||
pyexcel>=0.2.0 | ||
tabulate |
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,10 +1,3 @@ | ||
""" | ||
pyexcel-text | ||
~~~~~~~~~~~~~~ | ||
textual plugin for pyexcel | ||
""" | ||
|
||
try: | ||
from setuptools import setup, find_packages | ||
except ImportError: | ||
|
@@ -15,39 +8,54 @@ | |
with open("README.rst", 'r') as readme: | ||
README_txt = readme.read() | ||
|
||
with open("VERSION", "r") as version: | ||
version_txt = version.read().rstrip() | ||
dependencies = [ | ||
'pyexcel>=0.2.0', | ||
'tabulate', | ||
] | ||
|
||
extras = {} | ||
|
||
|
||
setup( | ||
name='pyexcel-text', | ||
author="C. W.", | ||
version=version_txt, | ||
author_email="[email protected]", | ||
url="https://github.com/chfw/pyexcel-text", | ||
author='C. W.', | ||
version='0.1.1', | ||
author_email='wangc_2011 (at) hotmail.com', | ||
url='https://github.com/pyexcel/pyexcel-text', | ||
description='A plugin to pyexcel and provides the capbility to present and write data in text fromats', | ||
install_requires=dependencies, | ||
extras_require=extras, | ||
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), | ||
include_package_data=True, | ||
install_requires=[ | ||
'pyexcel>=0.2.0', | ||
'pyexcel-io>=0.1.0', | ||
'tabulate' | ||
], | ||
description="It is a plugin to pyexcel and provides the capbility to present and write data in text fromats", | ||
long_description=README_txt, | ||
tests_require=['nose'], | ||
zip_safe=False, | ||
tests_require=['nose'], | ||
keywords=[ | ||
'excel', | ||
'python', | ||
'pyexcel', | ||
"plain", | ||
"simple", | ||
"grid", | ||
"pipe", | ||
"orgtbl", | ||
"rst", | ||
"mediawiki", | ||
"latex", | ||
"latex_booktabs", | ||
"json" | ||
], | ||
license='New BSD', | ||
classifiers=[ | ||
'Development Status :: 3 - Alpha', | ||
'Topic :: Office/Business', | ||
'Topic :: Utilities', | ||
'Topic :: Software Development :: Libraries', | ||
'Programming Language :: Python', | ||
'License :: OSI Approved :: BSD License', | ||
'Intended Audience :: Developers', | ||
'Programming Language :: Python :: 2.6', | ||
'Programming Language :: Python :: 2.7', | ||
'Programming Language :: Python :: 3.3', | ||
'Programming Language :: Python :: 3.4', | ||
'Programming Language :: Python :: Implementation :: PyPy' | ||
] | ||
) | ||
) |
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,7 +1,6 @@ | ||
https://github.com/chfw/pyexcel/archive/master.zip | ||
nose | ||
rednose | ||
nose-cov | ||
codecov | ||
coverage | ||
|
||
pyexcel |