-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
38 lines (33 loc) · 1.17 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
35
36
37
38
#!/usr/bin/env python
# -* encoding: utf-8 *-
import os
from setuptools import setup
HERE = os.path.dirname(__file__)
try:
long_description = open(os.path.join(HERE, 'README.rst')).read()
except IOError:
long_description = None
setup(
name="12factor-vault",
version="0.1.23",
packages=["vault12factor"],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX",
],
url="https://github.com/jdelic/12factor-vault/",
author="Jonas Maurus (@jdelic)",
author_email="[email protected]",
maintainer="GoPythonGo.com",
maintainer_email="[email protected]",
description="Helper classes to integrate Django and other projects with Vault",
long_description=long_description,
install_requires=[
"hvac>=0.3.0", # require at least 0.3.0 because it supports approle authentication
"django_dbconn_retry>=0.1.5", # require at least 0.1.5 for changed signal parameters
],
)