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(
|
2017-04-17 14:00:22 +00:00
|
|
|
name='Bopytex',
|
2020-08-21 17:29:32 +00:00
|
|
|
version='0.2',
|
2019-06-28 07:16:17 +00:00
|
|
|
description='Command line tool for compiling latex with python command embedded',
|
2017-04-16 15:46:00 +00:00
|
|
|
author='Benjamin Bertrand',
|
2019-06-28 07:16:17 +00:00
|
|
|
author_email='programming@opytex.org',
|
2017-04-17 14:00:22 +00:00
|
|
|
packages=['bopytex'],
|
2017-04-16 15:46:00 +00:00
|
|
|
install_requires=[
|
2020-08-20 14:11:26 +00:00
|
|
|
'click',
|
2022-05-04 16:03:58 +00:00
|
|
|
'jinja2',
|
2017-04-16 15:46:00 +00:00
|
|
|
],
|
|
|
|
entry_points={
|
2019-12-23 17:12:58 +00:00
|
|
|
"console_scripts": ['bopytex=bopytex.script:new']
|
2015-05-16 08:42:39 +00:00
|
|
|
},
|
2017-04-16 15:46:00 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
# -----------------------------
|
|
|
|
# Reglages pour 'vim'
|
|
|
|
# vim:set autoindent expandtab tabstop=4 shiftwidth=4:
|
|
|
|
# cursor: 16 del
|