Skip to content

Commit

Permalink
0.0.3b
Browse files Browse the repository at this point in the history
  • Loading branch information
harrytwigg committed Feb 14, 2021
1 parent 8a0ef34 commit d6be869
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 9 deletions.
Binary file added dist/viaduct-0.0.3a.tar.gz
Binary file not shown.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
setup(
name='viaduct', # How you named your package folder (MyLib)
packages=['viaduct'], # Chose the same as "name"
version='0.0.3a', # Start with a small number and increase it with every change you make
version='0.0.3b', # Start with a small number and increase it with every change you make
# Chose a license from here: https://help.github.com/articles/licensing-a-repository
license='gpl-3.0',
# Give a short description about your library
Expand All @@ -14,7 +14,7 @@
# Provide either the link to your github or to your website
url='https://github.com/harrytwigg/Viaduct-Trading212-Python-API',
# I explain this later on
download_url='https://github.com/harrytwigg/Viaduct-Trading212-Python-API/archive/0.0.3a.tar.gz',
download_url='https://github.com/harrytwigg/Viaduct-Trading212-Python-API/archive/0.0.3b.tar.gz',
keywords=['python', 'api', 'rest', 'api-wrapper', 'viaduct', 'trading212',
'trading212-api'], # Keywords that define your package best
install_requires=[ # I get to this in a second
Expand Down
3 changes: 2 additions & 1 deletion viaduct/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
from viaduct.isa import ISA
from viaduct.public import Public
from viaduct.public import Public
from viaduct.setup.installer import *
6 changes: 3 additions & 3 deletions viaduct/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
import json
import requests

from .setup import installer
from .utils import *
from .public import *
from viaduct.setup import installer
from viaduct.utils import *
from viaduct.public import *


class CoreModule(Public):
Expand Down
4 changes: 2 additions & 2 deletions viaduct/isa.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import json

from .core import *
from .utils import *
from viaduct.core import *
from viaduct.utils import *


class ISA(CoreModule):
Expand Down
2 changes: 1 addition & 1 deletion viaduct/public.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

import logging

from .utils import *
from viaduct.utils import *


class Public:
Expand Down

0 comments on commit d6be869

Please sign in to comment.