12 lines
324 B
Python
12 lines
324 B
Python
|
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)
|