25 lines
630 B
Python
25 lines
630 B
Python
#!/usr/bin/python
|
|
# -*- coding: utf-8 -*-
|
|
# \file setup.py
|
|
# \brief TODO
|
|
# \author Florent Guiotte <florent.guiotte@gmail.com>
|
|
# \version 0.1
|
|
# \date 2 oct. 2018
|
|
#
|
|
# TODO details
|
|
|
|
from distutils.core import setup
|
|
|
|
setup(name='minigrida',
|
|
version='2.0',
|
|
description='Simple and decentralized computing grid',
|
|
author='Florent Guiotte',
|
|
author_email='florent.guiotte@uhb.fr',
|
|
url='https://git.guiotte.fr/Florent/minigrida',
|
|
packages=['minigrida'],#'cvgenerators', 'descriptors', 'protocols', 'database'],
|
|
install_requires=[
|
|
'pony',
|
|
'psycopg2-binary',
|
|
]
|
|
)
|