Create skeleton structure for application

This commit is contained in:
Nick Chambers 2022-08-16 22:25:09 -05:00
parent 665dbd557d
commit 3118437b27
6 changed files with 20 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()

2
vultron/vultron.py Normal file
View File

@ -0,0 +1,2 @@
def main():
print("Hello, world!")