Skip to content

Commit

Permalink
Fix import relative path
Browse files Browse the repository at this point in the history
  • Loading branch information
HydrelioxGitHub committed Oct 12, 2016
1 parent 6d12cbb commit bedcdcc
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 11 deletions.
4 changes: 1 addition & 3 deletions MANIFEST
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@
setup.cfg
setup.py
pybbox\__init__.py
pybbox\bboxApiCall.py
pybbox\bboxApiURL.py
pybbox\bboxAuth.py
pybbox\bboxConstant.py
pybbox\boxApiCall.py
pybbox\pybbox.py
pybbox\test_bbox.py
6 changes: 3 additions & 3 deletions pybbox/bboxApiCall.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import requests
from bboxConstant import BboxConstant
from bboxAuth import BboxAuth
from bboxApiURL import BboxAPIUrl
from .bboxConstant import BboxConstant
from .bboxAuth import BboxAuth
from .bboxApiURL import BboxAPIUrl


class BboxApiCall:
Expand Down
2 changes: 1 addition & 1 deletion pybbox/bboxApiURL.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from bboxConstant import BboxConstant
from .bboxConstant import BboxConstant
import netaddr as net


Expand Down
2 changes: 1 addition & 1 deletion pybbox/bboxAuth.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from bboxConstant import BboxConstant
from .bboxConstant import BboxConstant


class BboxAuth:
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
setup(
name = 'pybbox',
packages = ['pybbox'], # this must be the same as the name above
install_requires=['netaddr'],
version = '0.0.4-alpha',
install_requires = ['netaddr','requests'],
version = '0.0.5-alpha',
description = 'a simple python3 library for the Bouygues BBox Routeur API',
author = 'Hydreliox',
author_email = '[email protected]',
url = 'https://github.com/HydrelioxGitHub/pybbox', # use the URL to the github repo
download_url = 'https://github.com/HydrelioxGitHub/pybbox/tarball/0.0.4-alpha',
download_url = 'https://github.com/HydrelioxGitHub/pybbox/tarball/0.0.5-alpha',
keywords = ['bbox', 'Bouygues', 'routeur', 'API'], # arbitrary keywords
classifiers = [],
)

0 comments on commit bedcdcc

Please sign in to comment.