-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·44 lines (41 loc) · 1.46 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
from setuptools import setup
DESCRIPTION = "CLI tool for encrypting and decrypting files and folders"
EXCLUDE_FROM_PACKAGES = ["build", "dist", "test", "src"]
setup(
name='encryptionsuite',
version='1.0.5B',
author="Wambua aka skye-cyber",
email="swskye17@gmail.com",
packages=["Encryptionsuite"],
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
entry_points={
'console_scripts': [
"Encryptionsuite=Encryptionsuite:main",
"encryptionsuite=Encryptionsuite:main",
"ENCRYPTIONSUITE=Encryptionsuite:main",
],
},
python_requires='>=3.0',
install_requires=[
'argparse',
'cryptography'
],
include_package_data=True,
license="MIT",
keywords=['Encryptionsuite', 'FED', 'File-encryptor', 'File-decryptor', 'encrypt-files', 'decrypt-files', 'encrypt', 'decrypt', 'cryptography'
],
classifiers=[
"Environment :: Console",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
)