11 lines
301 B
Python
11 lines
301 B
Python
from setuptools import setup
|
|
|
|
setup(name='ftx-api-wrapper-python3',
|
|
version='0.1',
|
|
description='FTX Exchange API wrapper in python3',
|
|
url='https://github.com/LeeChunHao2000/ftx-api-wrapper-python3',
|
|
author='Brendan Lee',
|
|
license='Custom',
|
|
packages=['FTX'],
|
|
)
|