From aea2bf6b8fd47d90e4e172935f4208a65e3ec1b0 Mon Sep 17 00:00:00 2001 From: bvanroll Date: Mon, 22 Mar 2021 12:18:00 +0100 Subject: [PATCH] main folder structure --- python-vault-db.toml | 6 ++++++ setup.cfg | 0 setup.py | 26 ++++++++++++++++++++++++++ src/python-vault-db/__init__.py | 0 4 files changed, 32 insertions(+) create mode 100644 python-vault-db.toml create mode 100644 setup.cfg create mode 100644 setup.py create mode 100644 src/python-vault-db/__init__.py diff --git a/python-vault-db.toml b/python-vault-db.toml new file mode 100644 index 0000000..b5a3c46 --- /dev/null +++ b/python-vault-db.toml @@ -0,0 +1,6 @@ +[build-system] +requires = [ + "setuptools>=42", + "wheel" +] +build-backend = "setuptools.build_meta" \ No newline at end of file diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..e69de29 diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..11026fe --- /dev/null +++ b/setup.py @@ -0,0 +1,26 @@ +import setuptools + +with open("README.md", "r", encoding="utf-8") as fh: + long_description = fh.read() + +setuptools.setup( + name="python-vault-db-bvanroll", # Replace with your own username + version="0.0.1", + author="Beppe Vanrolleghem", + author_email="beppe.vanrolleghem@gmail.com", + description="A vault creds reader for the vault database engine", + long_description=long_description, + long_description_content_type="text/markdown", + url="https://github.com/bvanroll/python-vault-db", + project_urls={ + "Bug Tracker": "https://github.com/bvanroll/python-vault-db/issues", + }, + classifiers=[ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: MIT License", + "Operating System :: OS Independent", + ], + package_dir={"": "src"}, + packages=setuptools.find_packages(where="src"), + python_requires=">=3.6", +) \ No newline at end of file diff --git a/src/python-vault-db/__init__.py b/src/python-vault-db/__init__.py new file mode 100644 index 0000000..e69de29