2015-05-16 08:42:39 +00:00
|
|
|
#!/usr/bin/env python
|
2017-04-16 15:46:00 +00:00
|
|
|
# encoding: utf-8
|
2015-05-16 08:42:39 +00:00
|
|
|
|
|
|
|
from setuptools import setup
|
|
|
|
|
2017-04-16 15:46:00 +00:00
|
|
|
setup(
|
2022-05-08 07:15:13 +00:00
|
|
|
name="Bopytex",
|
|
|
|
version="0.9",
|
|
|
|
description="Command line tool for compiling latex with python command embedded",
|
|
|
|
author="Benjamin Bertrand",
|
|
|
|
author_email="benjamin.bertrand@opytex.org",
|
|
|
|
packages=["bopytex"],
|
2017-04-16 15:46:00 +00:00
|
|
|
install_requires=[
|
2022-05-08 07:15:13 +00:00
|
|
|
"click",
|
|
|
|
"jinja2",
|
|
|
|
],
|
|
|
|
entry_points={"console_scripts": ["bopytex=bopytex.script:new"]},
|
|
|
|
)
|
2017-04-16 15:46:00 +00:00
|
|
|
|
|
|
|
# -----------------------------
|
|
|
|
# Reglages pour 'vim'
|
|
|
|
# vim:set autoindent expandtab tabstop=4 shiftwidth=4:
|
|
|
|
# cursor: 16 del
|