2022-01-28 20:29:29 +01:00
|
|
|
from setuptools import setup
|
|
|
|
|
2023-05-23 17:27:12 +02:00
|
|
|
setup(
|
|
|
|
name='cocluto',
|
|
|
|
version=1.01,
|
2022-01-28 20:29:29 +01: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)
|