-
Notifications
You must be signed in to change notification settings - Fork 44
/
setup.py
48 lines (44 loc) · 1.75 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
#!/usr/bin/env python
from setuptools import setup
setup(name='dot2tex',
version='2.12.dev',
description='A Graphviz to LaTeX converter',
long_description="""\
The purpose of dot2tex is to give graphs generated by the graph layout tool
Graphviz_, a more LaTeX friendly look and feel. This is accomplished by:
- Using native PSTricks_ and `PGF/TikZ`_ commands for drawing arrows,
edges and nodes.
- Typesetting labels with LaTeX, allowing mathematical notation.
- Using backend specific styles to customize the output.
.. _Graphviz: http://www.graphviz.org/
.. _PSTricks: http://tug.org/PSTricks/main.cgi/
.. _PGF/TikZ: http://www.ctan.org/tex-archive/help/Catalogue/entries/pgf.html
""",
author='Kjell Magne Fauske',
author_email='[email protected]',
url="https://github.com/kjellmf/dot2tex",
packages=['dot2tex'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering :: Visualization',
'Topic :: Text Processing :: Markup :: LaTeX',
'Topic :: Utilities',
],
install_requires=['pyparsing', 'setuptools'],
entry_points={
'console_scripts': [
'dot2tex = dot2tex.dot2tex:main',
]
}
)