1
- """
2
- pyexcel-text
3
- ~~~~~~~~~~~~~~
4
-
5
- textual plugin for pyexcel
6
- """
7
-
8
1
try :
9
2
from setuptools import setup , find_packages
10
3
except ImportError :
15
8
with open ("README.rst" , 'r' ) as readme :
16
9
README_txt = readme .read ()
17
10
18
- with open ("VERSION" , "r" ) as version :
19
- version_txt = version .read ().rstrip ()
11
+ dependencies = [
12
+ 'pyexcel>=0.2.0' ,
13
+ 'tabulate' ,
14
+ ]
15
+
16
+ extras = {}
17
+
20
18
21
19
setup (
22
20
name = 'pyexcel-text' ,
23
- author = "C. W." ,
24
- version = version_txt ,
25
-
26
- url = "https://github.com/chfw/pyexcel-text" ,
21
+ author = 'C. W.' ,
22
+ version = '0.1.1' ,
23
+ author_email = 'wangc_2011 (at) hotmail.com' ,
24
+ url = 'https://github.com/pyexcel/pyexcel-text' ,
25
+ description = 'A plugin to pyexcel and provides the capbility to present and write data in text fromats' ,
26
+ install_requires = dependencies ,
27
+ extras_require = extras ,
27
28
packages = find_packages (exclude = ['ez_setup' , 'examples' , 'tests' ]),
28
29
include_package_data = True ,
29
- install_requires = [
30
- 'pyexcel>=0.2.0' ,
31
- 'pyexcel-io>=0.1.0' ,
32
- 'tabulate'
33
- ],
34
- description = "It is a plugin to pyexcel and provides the capbility to present and write data in text fromats" ,
35
30
long_description = README_txt ,
36
- tests_require = ['nose' ],
37
31
zip_safe = False ,
32
+ tests_require = ['nose' ],
33
+ keywords = [
34
+ 'excel' ,
35
+ 'python' ,
36
+ 'pyexcel' ,
37
+ "plain" ,
38
+ "simple" ,
39
+ "grid" ,
40
+ "pipe" ,
41
+ "orgtbl" ,
42
+ "rst" ,
43
+ "mediawiki" ,
44
+ "latex" ,
45
+ "latex_booktabs" ,
46
+ "json"
47
+ ],
38
48
license = 'New BSD' ,
39
49
classifiers = [
40
- 'Development Status :: 3 - Alpha' ,
41
50
'Topic :: Office/Business' ,
42
51
'Topic :: Utilities' ,
43
52
'Topic :: Software Development :: Libraries' ,
44
53
'Programming Language :: Python' ,
45
54
'License :: OSI Approved :: BSD License' ,
46
55
'Intended Audience :: Developers' ,
47
- 'Programming Language :: Python :: 2.6' ,
48
56
'Programming Language :: Python :: 2.7' ,
49
57
'Programming Language :: Python :: 3.3' ,
50
58
'Programming Language :: Python :: 3.4' ,
51
59
'Programming Language :: Python :: Implementation :: PyPy'
52
60
]
53
- )
61
+ )
0 commit comments