-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (41 loc) · 1.54 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
import os
from setuptools import setup, find_packages
version = __import__('pynoweb_tools').get_version()
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name='pynoweb_tools',
version=version,
description=('Custom extensions and helper functions for processing'
'noweb files with Pweave and Pandoc.'),
long_description=read('README.md'),
url='http://github.com/brandonwillard/pynoweb_tools',
author='Brandon T. Willard',
author_email='brandonwillard@gmail.com',
license='LICENSE.txt',
classifiers=[
'Development Status :: 1 - Alpha',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
],
keywords='latex, noweb, pandoc, pweave',
packages=find_packages(),
use_2to3=True,
setup_requires=['pytest-runner', ],
tests_requires=['pytest', ],
install_requires=['pweave',
'pypandoc',
'pandocfilters>=1.4.1',
'jupyter_client',
'tornado',
'nbformat'
],
dependency_links=[
'git+https://github.com/brandonwillard/Pweave.git#egg=pweave',
'git+https://github.com/jgm/pandocfilters.git',
],
entry_points={
'console_scripts':
['PynowebWeave = pynoweb_tools.scripts:weave',
'PynowebFilter = pynoweb_tools.scripts:latex_json_filter'
]},
)