forked from wireservice/csvkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
52 lines (50 loc) · 1.45 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
45
46
47
48
49
50
51
52
#!/usr/bin/env python
from setuptools import setup
setup(
name='csvkit',
version='0.2.3',
description='A library of utilities for working with CSV, the king of tabular file formats.',
long_description=open('README').read(),
author='Christopher Groskopf',
author_email='[email protected]',
url='http://blog.apps.chicagotribune.com/',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities'
],
packages=[
'csvkit',
'csvkit.convert',
'csvkit.utilities'
],
scripts = [
'in2csv',
'csvcut',
'csvsql',
'csvclean',
'csvstat',
'csvlook',
'csvjoin',
'csvstack',
'csvsort',
'csvgrep',
'csvjson'
],
install_requires = [
'argparse==1.2.1',
'xlrd==0.7.1',
'python-dateutil==1.5',
'sqlalchemy==0.6.6']
)