17 lines
458 B
Python
17 lines
458 B
Python
|
#!/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'],
|
||
|
install_requiers=['jinja2', 'pyMath', 'path'],
|
||
|
entry_points = {
|
||
|
"console_scripts": ['opytex= opytex.opytex:main']
|
||
|
},
|
||
|
)
|