forked from getsops/sops
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·34 lines (32 loc) · 1.03 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
import os
import codecs
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
with codecs.open(os.path.join(here, 'README.rst'), encoding='utf-8') as f:
README = f.read()
setup(
name="sops",
py_modules=['sops'],
version="1.7",
author="Julien Vehent",
author_email="[email protected]",
description="Secrets OPerationS (sops) is an editor of encrypted files",
license="MPL",
keywords="mozilla secret credential encryption aws kms",
url="https://github.com/mozilla/sops",
packages=find_packages(),
zip_safe=True,
long_description=README,
install_requires=[
'ruamel.yaml>=0.10.7', 'boto3>=1.1.3', 'cryptography>=0.9.3'],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
],
entry_points={
'console_scripts': [
'sops = sops:main'
]
}
)