-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
32 lines (29 loc) · 998 Bytes
/
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
#!/usr/bin/env python3
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
setup(
name='tably',
version='1.0',
author='narimiran',
#packages=['tably'],
scripts=['tably.py'],
url='https://github.com/narimiran/tably.git',
license='MIT',
description='Python script for converting .csv data to LaTeX tables.',
long_description=readme(),
entry_points={'console_scripts': ['tably=tably:main']},
keywords='python python3 command-line cli latex table csv',
classifiers=[
'Environment :: Console',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Text Processing :: Markup :: LaTeX',
],
)