forked from mkasa/json2xlsx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·45 lines (41 loc) · 1.47 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/usr/bin/env python
import os
from setuptools import setup
def read_from_file(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name='json2xlsx',
version='1.3',
description='Tool to generate xlsx (Excel spreadsheet) from JSON',
long_description=read_from_file('README.rst'),
author='Masahiro Kasahara',
author_email='[email protected]',
url='http://github.com/mkasa/json2xlsx',
license='BSD',
packages=['json2xlsx', 'json2xlsx.utilities'],
zip_safe=True,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities'
],
entry_points= {
'console_scripts': [
'json2xlsx = json2xlsx.utilities.json2xlsx:main'
]
},
install_requires = [
'argparse>=1.2.1',
'openpyxl>=2.3',
'pyparsing>=1.5.5'
],
)