Browse Source

Create skeleton structure for application

cmd/billing
Nick Chambers 1 year ago
parent
commit
3118437b27
  1. 2
      LICENSE
  2. 2
      README.md
  3. 3
      pyproject.toml
  4. 10
      setup.cfg
  5. 3
      setup.py
  6. 2
      vultron/vultron.py

2
LICENSE

@ -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:

2
README.md

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

3
pyproject.toml

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

10
setup.cfg

@ -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

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

2
vultron/vultron.py

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