skynet/setup.py

12 lines
278 B
Python
Raw Normal View History

from setuptools import setup, find_packages
setup(
name='skynet-bot',
version='0.1.0a6',
description='Decentralized compute platform',
author='Guillermo Rodriguez',
author_email='guillermo@telos.net',
packages=find_packages(),
install_requires=[]
)