forked from mrcoles/readmd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (26 loc) · 856 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
from distutils.core import setup
setup(
name='readmd',
version='0.1.2',
description='Make markdown easier to read as plaintext',
author='Peter Coles',
author_email='[email protected]',
url='https://github.com/mrcoles/readmd',
py_modules=['readmd'],
entry_points={
'console_scripts': [
'readmd = readmd:command_line_runner',
]
},
classifiers=[
'Programming Language :: Python',
'License :: OSI Approved :: MIT License',
'Development Status :: 4 - Beta',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'Topic :: Text Processing',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
],
)