2016-11-13 15:54:11 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# encoding: utf-8
|
|
|
|
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
2017-04-17 12:04:01 +00:00
|
|
|
setup(
|
|
|
|
name="repytex",
|
|
|
|
version="0.1",
|
|
|
|
description="Création de rapport et analyses de notes",
|
|
|
|
author="Benjamin Bertrand",
|
|
|
|
include_package_data=True,
|
|
|
|
packages=find_packages(),
|
|
|
|
install_requires=[
|
|
|
|
'jinja2',
|
|
|
|
'pandas',
|
|
|
|
'xlrd',
|
|
|
|
'path.py',
|
|
|
|
],
|
|
|
|
entry_points={
|
|
|
|
"console_scripts": ['repytex = repytex.generate_reports_main:main']
|
|
|
|
},
|
|
|
|
zip_safe=False
|
|
|
|
)
|
2016-11-13 15:54:11 +00:00
|
|
|
|
|
|
|
|
|
|
|
# -----------------------------
|
|
|
|
# Reglages pour 'vim'
|
|
|
|
# vim:set autoindent expandtab tabstop=4 shiftwidth=4:
|
2017-04-17 12:04:01 +00:00
|
|
|
# cursor: 16 del
|