-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
46 lines (41 loc) · 1.26 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
#!/usr/bin/env python
from setuptools import setup, find_packages
from tabtools import version
with open('README.md', 'r') as f:
long_description = f.read()
setup(
name="tabtools",
version=version,
packages=find_packages(),
# metadata for upload to PyPI
author="Kirill Pavlov",
author_email="k@p99.io",
url="https://github.com/slothai/tabtools",
description="Tools for columnar files manipulation in command line",
long_description=long_description,
entry_points={
"console_scripts": [
'ttsort = tabtools.scripts:ttsort',
'ttmap = tabtools.scripts:ttmap',
'ttreduce = tabtools.scripts:ttreduce',
'ttplot = tabtools.scripts:ttplot',
]
},
scripts=[
"bin/tttail",
"bin/ttpretty",
],
# Full list:
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
],
python_requires=">=3.4",
license="MIT",
)