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