main folder structure

This commit is contained in:
2021-03-22 12:18:00 +01:00
parent 4b31741c6e
commit aea2bf6b8f
4 changed files with 32 additions and 0 deletions

6
python-vault-db.toml Normal file
View File

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

0
setup.cfg Normal file
View File

26
setup.py Normal file
View File

@@ -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",
)

View File