Merge pull request #21 from JacobPlaster/add-templates

Add templates
This commit is contained in:
Paolo Ardoino
2019-06-25 07:58:39 +01:00
committed by GitHub
5 changed files with 37 additions and 0 deletions

13
.github/ISSUE_TEMPLATE vendored Normal file
View File

@@ -0,0 +1,13 @@
#### Issue type
- [ ] bug
- [ ] missing functionality
- [ ] performance
- [ ] feature request
#### Brief description
#### Steps to reproduce
-
##### Additional Notes:
-

15
.github/PULL_REQUEST_TEMPLATE vendored Normal file
View File

@@ -0,0 +1,15 @@
### Description:
...
### Breaking changes:
- [ ]
### New features:
- [ ]
### Fixes:
- [ ]
### PR status:
- [ ] Version bumped
- [ ] Change-log updated

3
CHANGELOG Normal file
View File

@@ -0,0 +1,3 @@
0.0.1
- Added change-log and PR/Issue templates

View File

@@ -2,6 +2,7 @@
This module is used to interact with the bitfinex api
"""
from .version import __version__
from .client import Client
from .models import (Order, Trade, OrderBook, Subscription, Wallet,
Position, FundingLoan, FundingOffer, FundingCredit)

5
bfxapi/version.py Normal file
View File

@@ -0,0 +1,5 @@
"""
This module contains the current version of the bfxapi lib
"""
__version__ = '0.0.1'