-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (36 loc) · 1.01 KB
/
setup.py
File metadata and controls
37 lines (36 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# setup.py
from setuptools import setup, find_packages
import src.pcvm.constants as constants
setup(
name="pcvm",
version=constants.VERSION,
author="Ivan Iliev",
author_email="ivan@yoghurtpower.com",
description="Python Cloud Vault Manager",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/Accedia/python-cloud-vault-manager",
packages=find_packages(where="src"),
package_dir={"": "src"},
classifiers=[
"Programming Language :: Python :: 3",
"Apache-2.0",
"Operating System :: OS Independent",
"Environment :: Console",
"Intended Audience :: Developers",
"Topic :: Utilities",
],
python_requires='>=3.9',
install_requires=[
'azure-identity',
'azure-keyvault-secrets',
'argparse',
'pyyaml'
],
entry_points={
'console_scripts': [
'vaultm=pcvm.main:main',
'pcvm=pcvm.main:main',
],
},
)