-
Notifications
You must be signed in to change notification settings - Fork 88
/
setup.py
32 lines (30 loc) · 933 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
from setuptools import setup
with open('README.rst') as f:
long_description = f.read()
setup(
name='csvtomd',
version='0.3.0',
description='Convert your CSV files into Markdown tables.',
long_description=long_description,
url='https://github.com/mplewis/csvtomd',
license='MIT',
author='Matthew Lewis',
author_email='[email protected]',
packages=['csvtomd'],
entry_points={
'console_scripts': [
'csvtomd = csvtomd:main'
]
},
include_package_data=True,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Topic :: Text Processing :: Markup'
],
)