mirror of https://github.com/skygpu/skynet.git
12 lines
278 B
Python
12 lines
278 B
Python
|
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=[]
|
||
|
)
|