9 lines
239 B
Python
9 lines
239 B
Python
from setuptools import find_packages, setup
|
|
|
|
setup(name='v2realbot',
|
|
version='0.91',
|
|
description='Realbot trader',
|
|
author='David Brazda',
|
|
author_email='davidbrazda61@gmail.com',
|
|
packages=find_packages()
|
|
) |