-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
30 lines (28 loc) · 864 Bytes
/
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
from distutils.core import setup
import os
description = "Edit encrypted files"
long_description = (
"Edit Encrypted Files (eef) is a command-line tool to edit "
"encrypted files with GPG using symmetric-key encryption."
)
setup(
author="Mathieu Larose",
author_email="[email protected]",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX",
"Programming Language :: Python",
"Topic :: Security :: Cryptography",
"Topic :: Utilities"
],
keywords="gpg",
license='GPL',
description=description,
long_description=long_description,
name='eef',
scripts=['eef'],
url="https://github.com/larose/eef",
version='0.0',
)