added a setup.py to make the package pip installable, added an overly simple .gitignore

This commit is contained in:
2021-05-11 12:42:19 +02:00
parent 8fa6887218
commit c4afdc294f
2 changed files with 12 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@@ -0,0 +1,2 @@
__pycache__
*egg-info/

10
setup.py Normal file
View File

@@ -0,0 +1,10 @@
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'],
)