Make vultron.api import-able by the driver

This commit is contained in:
Nick Chambers 2022-08-17 22:10:59 -05:00
parent e6ef28b5af
commit cf1d6147c1
3 changed files with 6 additions and 4 deletions

View File

@ -3,7 +3,9 @@ name = vultron
version = 0.1.0
[options]
packages = vultron
packages =
vultron
vultron.api
[options.entry_points]
console_scripts =

View File

@ -1,3 +1,3 @@
class VultrApi:
class Client:
def init(**kwargs):
print(kwargs)

View File

@ -1,5 +1,5 @@
from vultron.api import VultrApi
import vultron.api
def main():
api = VultrApi()
api = vultron.api.Client()
print("Hello, world!")