added a setup.py to make the package pip installable, added an overly simple .gitignore
This commit is contained in:
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
__pycache__
|
||||
*egg-info/
|
||||
10
setup.py
Normal file
10
setup.py
Normal 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'],
|
||||
)
|
||||
Reference in New Issue
Block a user