-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (25 loc) · 839 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
import os
from setuptools import setup
dir_ = os.path.dirname(os.path.abspath(__file__))
with open(os.path.join(dir_, 'README.md'), 'r') as rm:
README = rm.read()
setup(name='live-pandoc',
version='0.1.1',
description='A program for live rendering a pandoc command',
long_description=README,
long_description_content_type="text/markdown",
url='http://github.com/blockjoe/live-pandoc',
author='blockjoe',
author_email='[email protected]',
license='MIT',
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
],
packages=('live_pandoc',),
install_requires=('watchdog',),
include_package_data=True,
entry_points={
'console_scripts': ['live-pandoc=live_pandoc.main:main']
}
)