Compare commits

...

2 Commits

Author SHA1 Message Date
Nick Chambers e6ef28b5af Hammer out start of entry point 2022-08-17 09:54:45 -05:00
Nick Chambers 3118437b27 Create skeleton structure for application 2022-08-16 22:25:09 -05:00
9 changed files with 26 additions and 2 deletions

View File

@ -1,6 +1,6 @@
MIT License
Copyright (c) <year> <copyright holders>
Copyright (c) 2022 Nick Chambers <uplime@spookyinternet.com>
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

View File

@ -1,3 +1,3 @@
# vultron
High-vultage API client for the vultrtual cloud.
High-vultage API client for the vultrtual cloud.

3
pyproject.toml Normal file
View File

@ -0,0 +1,3 @@
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools", "wheel"]

10
setup.cfg Normal file
View File

@ -0,0 +1,10 @@
[metadata]
name = vultron
version = 0.1.0
[options]
packages = vultron
[options.entry_points]
console_scripts =
vultron = vultron.vultron:main

3
setup.py Normal file
View File

@ -0,0 +1,3 @@
from setuptools import setup
setup()

0
vultron/__init__.py Normal file
View File

0
vultron/api/__init__.py Normal file
View File

3
vultron/api/api.py Normal file
View File

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

5
vultron/vultron.py Normal file
View File

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