-
Notifications
You must be signed in to change notification settings - Fork 27
/
setup.py
54 lines (49 loc) · 1.74 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
import os
import codecs
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
def read(*parts):
# intentionally *not* adding an encoding option to open
return codecs.open(os.path.join(here, *parts), 'r').read()
setup(
name='ghost',
version="0.7.0",
url='https://github.com/nir0s/ghost',
author='nir0s',
author_email='[email protected]',
license='LICENSE',
platforms='All',
description='Ghost stores your secrets where no one can see',
long_description=read('README.rst'),
py_modules=['ghost'],
entry_points={'console_scripts': ['ghost = ghost:main']},
install_requires=[
"click>=6.7",
"tinydb>=3.2.2",
"cryptography>=1.5.0"
],
extras_require={
'vault': ['hvac>=0.2.16'],
'consul': ['requests>=2.11.1'],
'sqlalchemy': ['sqlalchemy>=1.0.15', 'sqlalchemy-utils>=0.32.14'],
'elasticsearch': ['elasticsearch>=2.4.0'],
's3': ['boto3>=1.4.1', 'botocore>=1.4.46']
},
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Natural Language :: English',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Apache Software License',
'Operating System :: POSIX :: Linux',
'Operating System :: Microsoft',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)