Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
axiaoxin committed Apr 1, 2015
1 parent 7bb29dd commit d48dcd3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion json2xls/__init__.py
Expand Up @@ -127,6 +127,6 @@ def body_callback(self, data):

__author__ = 'axiaoxin'
__email__ = '254606826@qq.com'
__version__ = '0.1.3'
__version__ = '0.1.3c'

from json2xls import Json2Xls
10 changes: 6 additions & 4 deletions setup.py
@@ -1,23 +1,25 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-


try:
from setuptools import setup
except ImportError:
from distutils.core import setup

readme = open('README.md').read()

requirements = open('requirements.txt').readlines()
requirements = [
"click",
"requests",
"xlwt"
]

test_requirements = [
# TODO: put package test requirements here
]

setup(
name='json2xls',
version='0.1.3',
version='0.1.3c',
description='generate excel by json',
long_description=readme,
author='axiaoxin',
Expand Down

0 comments on commit d48dcd3

Please sign in to comment.