Bopytex/setup.py

23 lines
587 B
Python
Raw Normal View History

2015-05-16 08:42:39 +00:00
#!/usr/bin/env python
#from distutils.core import setup
from setuptools import setup
setup(name='Opytex',
version='0.1',
description='Jinja environment for latex with computing macros',
author='Benjamin Bertrand',
author_email='lafrite@poneyworld.net',
packages=['opytex'],
2015-05-16 10:07:37 +00:00
install_requires=['jinja2',
'path.py',
'pyMath',
2015-05-16 09:58:55 +00:00
],
dependency_links=[
2015-05-16 10:07:37 +00:00
"git+http://git.poneyworld.net/pyMath/#egg=pyMath",
],
2015-05-16 08:42:39 +00:00
entry_points = {
"console_scripts": ['opytex= opytex.opytex:main']
},
)