made cocluto an installable package

This commit is contained in:
Guillaume Raffy 2022-01-28 20:29:29 +01:00
parent a0a7ebe2d8
commit c7fa99064f
2 changed files with 13 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
cocluto.egg-info
__pycache__

11
setup.py Normal file
View File

@ -0,0 +1,11 @@
from setuptools import setup
setup(name='cocluto',
version=1.00,
description='compute cluster utility tools',
url='https://git.ipr.univ-rennes1.fr/graffy/cocluto',
author='Guillaume Raffy',
author_email='guillaume.raffy@univ-rennes1.fr',
license='MIT',
packages=['cocluto'],
zip_safe=False)