forked from p-sherratt/sagecipher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (44 loc) · 1.49 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
from os import path
from setuptools import setup, find_packages
import re
here = path.abspath(path.dirname(__file__))
with open(path.join(here, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="sagecipher",
version="0.7.5",
packages=["sagecipher"],
author="Paul Sherratt",
author_email="[email protected]",
url="https://github.com/p-sherratt/sagecipher",
keywords="ssh-agent paramiko cipher cloginrc encryption keyring ansible vault",
description="Uses SSH agent to encrypt/decrypt arbitrary data",
long_description=long_description,
long_description_content_type="text/markdown",
license="Apache",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: System Administrators",
"Intended Audience :: Telecommunications Industry",
"Topic :: Security :: Cryptography",
"Topic :: System :: Systems Administration",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3 :: Only",
],
install_requires=[
"paramiko",
"pycryptodome",
"click",
"pyinotify",
"keyring",
"keyrings.alt",
],
setup_requires=["pytest-runner"],
tests_require=["pytest"],
zip_safe=True,
entry_points={
"console_scripts": ["sagecipher = sagecipher.__main__:cli"],
"keyring.backends": ["sagecipher = sagecipher.keyring"]
},
)