-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
50 lines (42 loc) · 1.35 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
#!/usr/bin/env python
# coding: utf8
from setuptools import setup
VERSION = '0.7'
VERSION_SUFFIX = '-dev'
VERSION_SUFFIX = ''
setup(
name='csvtools',
version='{version}{version_suffix}'.format(
version=VERSION,
version_suffix=VERSION_SUFFIX,
),
description=(
u'Pipe friendly command line tools'
+ u' for processing CSV files with headers.'
),
author=u'CEU MicroData',
url='https://github.com/ceumicrodata/csvtools',
packages=['csvtools'],
provides=['csvtools ({version})'.format(version=VERSION)],
install_requires=[
'aniso8601>=0.90',
'unicodecsv>=0.9.4',
],
entry_points={
'console_scripts': [
'csv_add_id = csvtools.add_id:main',
'csv_select = csvtools.select:main',
'csv_split = csvtools.split:main',
'csv_cat = csvtools.concatenate:main',
'csv_zip = csvtools.zip:main',
'csv_unzip = csvtools.unzip:main',
'csv_rmfields = csvtools.rmfields:main',
'csv_extract_map = csvtools.extract_map:main',
'csv_to_postgres = csvtools.to_postgres:main',
'csv_to_tsv = csvtools.csv2tsv:main',
'tsv_to_csv = csvtools.tsv2csv:main',
'csv_snapshot = csvtools.snapshot:main',
'csv_pad = csvtools.pad:main',
],
}
)