From 3118437b272ef3059038b311395a3ecf6f2438ed Mon Sep 17 00:00:00 2001 From: Nick Chambers Date: Tue, 16 Aug 2022 22:25:09 -0500 Subject: [PATCH] Create skeleton structure for application --- LICENSE | 2 +- README.md | 2 +- pyproject.toml | 3 +++ setup.cfg | 10 ++++++++++ setup.py | 3 +++ vultron/vultron.py | 2 ++ 6 files changed, 20 insertions(+), 2 deletions(-) create mode 100644 pyproject.toml create mode 100644 setup.cfg create mode 100644 setup.py create mode 100644 vultron/vultron.py diff --git a/LICENSE b/LICENSE index 2071b23..79e55b3 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) +Copyright (c) 2022 Nick Chambers 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: diff --git a/README.md b/README.md index 9b8eff9..6237ea9 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,3 @@ # vultron -High-vultage API client for the vultrtual cloud. \ No newline at end of file +High-vultage API client for the vultrtual cloud. diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..bf91296 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,3 @@ +[build-system] +build-backend = "setuptools.build_meta" +requires = ["setuptools", "wheel"] diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..c63f6aa --- /dev/null +++ b/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 diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..6068493 --- /dev/null +++ b/setup.py @@ -0,0 +1,3 @@ +from setuptools import setup + +setup() diff --git a/vultron/vultron.py b/vultron/vultron.py new file mode 100644 index 0000000..9813308 --- /dev/null +++ b/vultron/vultron.py @@ -0,0 +1,2 @@ +def main(): + print("Hello, world!")