Files
python-vault-db/setup.py
2021-03-22 12:18:00 +01:00

26 lines
894 B
Python

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