mirror of
https://github.com/bvanroll/python-vault-db.git
synced 2025-08-28 19:42:45 +00:00
main folder structure
This commit is contained in:
6
python-vault-db.toml
Normal file
6
python-vault-db.toml
Normal file
@@ -0,0 +1,6 @@
|
||||
[build-system]
|
||||
requires = [
|
||||
"setuptools>=42",
|
||||
"wheel"
|
||||
]
|
||||
build-backend = "setuptools.build_meta"
|
26
setup.py
Normal file
26
setup.py
Normal 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",
|
||||
)
|
0
src/python-vault-db/__init__.py
Normal file
0
src/python-vault-db/__init__.py
Normal file
Reference in New Issue
Block a user