2015-09-06 17:20:34 -04:00
|
|
|
import os
|
2015-11-24 09:39:33 -05:00
|
|
|
import codecs
|
2015-09-06 21:46:29 -04:00
|
|
|
from setuptools import setup, find_packages
|
2015-09-06 17:20:34 -04:00
|
|
|
|
2015-11-24 09:39:33 -05:00
|
|
|
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()
|
2015-09-25 12:01:46 +02:00
|
|
|
|
2015-09-06 17:20:34 -04:00
|
|
|
setup(
|
2015-09-25 12:01:46 +02:00
|
|
|
name="sops",
|
|
|
|
|
py_modules=['sops'],
|
2018-09-12 15:37:00 -07:00
|
|
|
version="1.18",
|
2015-09-25 12:01:46 +02:00
|
|
|
author="Julien Vehent",
|
|
|
|
|
author_email="jvehent@mozilla.com",
|
|
|
|
|
description="Secrets OPerationS (sops) is an editor of encrypted files",
|
|
|
|
|
license="MPL",
|
|
|
|
|
keywords="mozilla secret credential encryption aws kms",
|
2015-09-30 11:29:49 -04:00
|
|
|
url="https://github.com/mozilla/sops",
|
2015-09-25 12:01:46 +02:00
|
|
|
packages=find_packages(),
|
|
|
|
|
zip_safe=True,
|
2015-11-24 09:39:33 -05:00
|
|
|
long_description=README,
|
2015-09-25 12:01:46 +02:00
|
|
|
install_requires=[
|
2018-04-19 11:57:56 -07:00
|
|
|
'ruamel.yaml>=0.11.7,<0.12.0 ; python_version=="2.6"',
|
|
|
|
|
'ruamel.yaml>=0.11.7 ; python_version>"2.6"',
|
2016-03-24 13:51:53 -04:00
|
|
|
'boto3>=1.1.3',
|
2018-11-27 11:02:27 -08:00
|
|
|
# pycparser is a transitive dependency of cryptography. 2.18 is the
|
|
|
|
|
# last release with Python 2.6 support
|
|
|
|
|
'pycparser==2.18 ; python_version=="2.6"',
|
2018-04-17 16:02:04 -07:00
|
|
|
'cryptography>=1.4',
|
2016-08-22 12:35:11 -04:00
|
|
|
'setuptools>=18.8.1',
|
|
|
|
|
'ordereddict>=1.1',
|
|
|
|
|
'simplejson>=3.8'],
|
2015-09-25 12:01:46 +02:00
|
|
|
classifiers=[
|
2015-09-06 17:20:34 -04:00
|
|
|
"Development Status :: 5 - Production/Stable",
|
|
|
|
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
|
|
|
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
|
|
|
|
|
],
|
2015-09-25 12:01:46 +02:00
|
|
|
entry_points={
|
2015-09-06 21:46:29 -04:00
|
|
|
'console_scripts': [
|
|
|
|
|
'sops = sops:main'
|
|
|
|
|
]
|
|
|
|
|
}
|
2015-09-06 17:20:34 -04:00
|
|
|
)
|