-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.cfg
30 lines (28 loc) · 982 Bytes
/
setup.cfg
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
[metadata]
name = tabletools
version = 1.0.0
author = MaragkakisLab
author_email = [email protected]
description = Package for processing csv files with headers, a.k.a. tables
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/maragkakislab/tabletools
project_urls =
Bug Tracker = https://github.com/maragkakislab/tabletools/issues
classifiers =
Programming Language :: Python :: 3
License :: Public Domain
Operating System :: OS Independent
[options]
packages = find:
python_requires = >=3.4
install_requires =
pandas
[options.entry_points]
console_scripts =
table-cat.py = tabletools.table_cat:main
table-cut-columns.py = tabletools.table_cut_columns:main
table-group-summarize.py = tabletools.table_group_summarize:main
table-join.py = tabletools.table_join:main
table-paste-col.py = tabletools.table_paste_col:main
table-to-excel.py = tabletools.table_to_excel:main