Skip to content

Commit 624dbce

Browse files
committed
0.0.6
1 parent ac69077 commit 624dbce

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

dist/viaduct-0.0.5.tar.gz

5.84 KB
Binary file not shown.

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
setup(
44
name='viaduct', # How you named your package folder (MyLib)
55
packages=['viaduct'], # Chose the same as "name"
6-
version='0.0.5', # Start with a small number and increase it with every change you make
6+
version='0.0.6', # Start with a small number and increase it with every change you make
77
# Chose a license from here: https://help.github.com/articles/licensing-a-repository
88
license='gpl-3.0',
99
# Give a short description about your library
@@ -14,7 +14,7 @@
1414
# Provide either the link to your github or to your website
1515
url='https://github.com/harrytwigg/Viaduct-Trading212-Python-API',
1616
# I explain this later on
17-
download_url='https://github.com/harrytwigg/Viaduct-Trading212-Python-API/archive/0.0.5.tar.gz',
17+
download_url='https://github.com/harrytwigg/Viaduct-Trading212-Python-API/archive/0.0.6.tar.gz',
1818
keywords=['python', 'api', 'rest', 'api-wrapper', 'viaduct', 'trading212',
1919
'trading212-api'], # Keywords that define your package best
2020
install_requires=[ # I get to this in a second

viaduct/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
from viaduct.isa import ISA
22
from viaduct.public import Public
33
from viaduct.utils import *
4-
from viaduct.setup.installer import *
4+
from viaduct import setup

viaduct/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class CoreModule(Public):
2323
def __init__(self, username, password, tradingType, reality, headless, browserPath, timeout):
2424
super().__init__()
2525

26-
installer.installDriver()
26+
installDriver()
2727
options = webdriver.FirefoxOptions()
2828
options.headless = headless
2929
options.binary_location = browserPath

0 commit comments

Comments
 (0)