2019-08-04 19:11:46 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# encoding: utf-8
|
|
|
|
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='Recopytex',
|
2019-09-17 17:03:21 +00:00
|
|
|
version='1.1.1',
|
2019-08-04 19:11:46 +00:00
|
|
|
description='Assessment analysis',
|
|
|
|
author='Benjamin Bertrand',
|
|
|
|
author_email='',
|
|
|
|
packages=find_packages(),
|
|
|
|
include_package_data=True,
|
|
|
|
install_requires=[
|
|
|
|
'Click',
|
2019-09-17 17:03:21 +00:00
|
|
|
'pandas',
|
|
|
|
'numpy',
|
|
|
|
'papermill',
|
|
|
|
'pyyaml',
|
2020-01-22 21:46:05 +00:00
|
|
|
'PyInquirer',
|
2019-08-04 19:11:46 +00:00
|
|
|
],
|
|
|
|
entry_points='''
|
|
|
|
[console_scripts]
|
|
|
|
recopytex=recopytex.scripts.recopytex:cli
|
|
|
|
''',
|
|
|
|
)
|
|
|
|
|
|
|
|
# -----------------------------
|
|
|
|
# Reglages pour 'vim'
|
|
|
|
# vim:set autoindent expandtab tabstop=4 shiftwidth=4:
|
|
|
|
# cursor: 16 del
|