-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
57 lines (46 loc) · 2.35 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
from setuptools import setup, find_packages
import io
import os
import versioneer
here = os.path.abspath(os.path.dirname(__file__))
with io.open(os.path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='pandoctools',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description='Profile manager of text processing pipelines: Pandoc filters, any text CLI filters. Atom+Markdown+Pandoc+Jupyter workflow, export to ipynb.',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/kiwi0fruit/pandoctools',
author='Peter Zagubisalo',
author_email='[email protected]',
license='MIT License',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
],
# keywords='sample setuptools development',
packages=find_packages(exclude=['docs', 'tests']),
python_requires='>=3.6',
install_requires=['click', 'pyyaml', 'notebook', 'jupyter', 'libsass', 'shutilwhich-cwdpatch>=0.1.0',
'panflute>=1.12.4', 'knitty>=0.6.1', 'pyppdf>=0.1.1',
'sugartex>=0.1.16', 'shortcutter>=0.1.19', 'numpy', 'py-open-fonts>=0.7.0',
'py-pandoc>=2.8.0.1', 'py-pandoc-crossref>=0.3.5.0.1', 'py-mathjax<3.0',
'jupyter_console>=6.0.0'],
# conda create -n pandoctools -c defaults -c conda-forge "python=3.7" click pyyaml notebook jupyter libsass "shutilwhich-cwdpatch>=0.1.0" "panflute>=1.12.4" "knitty>=0.5.0" "pyppdf>=0.0.11" "sugartex>=0.1.16" "shortcutter>=0.1.19" "numpy" "py-pandoc>=2.8.0.1" "py-pandoc-crossref>=0.3.5.0.1" "py-mathjax<3.0" "py-open-fonts>=0.4.9" "jupyter_console>=6.0.0"
include_package_data=True,
entry_points={
'console_scripts': [
'cat-md=pandoctools.cat_md.cat_md:cli',
'pandoctools=pandoctools.cli.cli:pandoctools',
'pandoctools-resolve=pandoctools.pandoctools_resolve.resolve:cli',
'pandoctools-ready=pandoctools.ready.ready:ready',
'regex-replace=pandoctools.regex_replace.cli:cli',
],
},
)