-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
executable file
·34 lines (30 loc) · 1.24 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
# -*- coding: utf-8 -*-
from setuptools import setup
import os
import re
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="table-logger",
version=re.search("__version__ = '(.+)'", open("table_logger/_version.py").readlines()[0].rstrip()).group(1),
author="Alexander Tkachenko",
author_email="[email protected]",
description=("TableLogger is a handy Python utility for logging tabular"
" data into a console or a file."),
license="GNU GPL 2.0",
keywords=["tabular", "structured", "data", "console", "log"],
url="https://github.com/AleksTk/table-logger",
download_url='https://github.com/AleksTk/table-logger/archive/v0.3.1.tar.gz',
packages=['table_logger'],
long_description=read('README.rst'),
install_requires=['numpy', ],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Topic :: Software Development :: Libraries",
"Topic :: System :: Logging",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
],
)