-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
34 lines (32 loc) · 1.16 KB
/
setup.py
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
from setuptools import setup
setup(
name="bundlewrap-teamvault",
version="3.1.5",
description="Access TeamVault secrets from BundleWrap",
author="Torsten Rehn",
author_email="torsten@rehn.email",
license="GPLv3",
py_modules=['bwtv'],
keywords=["configuration", "config", "management"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Installation/Setup",
"Topic :: System :: Systems Administration",
],
install_requires=[
"bundlewrap >= 4.0.0",
"passlib",
"requests >= 1.0.0",
],
)