19 lines
404 B
Python
19 lines
404 B
Python
#!/usr/bin/env python
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
|
setup(
|
|
name='Pytex',
|
|
version='0.1',
|
|
description='Writing latex files and compile it with python and jinja2',
|
|
author='Benjamin Bertrand',
|
|
author_email='lafrite@poneyworld.net',
|
|
include_package_data=True,
|
|
packages=find_packages(),
|
|
install_requires=[
|
|
'jinja2',
|
|
'path.py',
|
|
],
|
|
)
|