forked from xtream1101/data-converter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (32 loc) · 992 Bytes
/
setup.py
File metadata and controls
35 lines (32 loc) · 992 Bytes
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
from distutils.core import setup
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst', format='md')
except (IOError, ImportError) as e:
print(str(e))
long_description = ''
setup(
name='data-converter',
packages=['data_converter'],
version='0.0.5',
description='Convert most data file to other file formats',
long_description=long_description,
author='Eddy Hintze',
author_email="eddy@hintze.co",
url="https://github.com/xtream1101/data-converter",
license='MIT',
classifiers=[
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
],
install_requires=[],
entry_points={
'console_scripts': [
'data-converter=data_converter:cli',
],
},
)