2017-04-16 14:17:01 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
|
|
|
|
|
|
|
setup(
|
2017-09-12 18:55:40 +00:00
|
|
|
name='mypytex',
|
2019-12-22 16:31:05 +00:00
|
|
|
version='0.3',
|
2017-04-16 14:17:01 +00:00
|
|
|
description='Writing latex files and compile it with python and jinja2',
|
2017-08-18 19:25:01 +00:00
|
|
|
url='https://git.opytex.org/lafrite/Pytex',
|
|
|
|
author='Bertrand Benjamin',
|
|
|
|
author_email='benjamin.bertrand@opytex.org',
|
2017-04-16 14:17:01 +00:00
|
|
|
include_package_data=True,
|
|
|
|
packages=find_packages(),
|
|
|
|
install_requires=[
|
|
|
|
'jinja2',
|
|
|
|
],
|
|
|
|
)
|
2017-08-18 19:25:01 +00:00
|
|
|
|
|
|
|
# -----------------------------
|
|
|
|
# Reglages pour 'vim'
|
|
|
|
# vim:set autoindent expandtab tabstop=4 shiftwidth=4:
|
|
|
|
# cursor: 16 del
|
|
|
|
|