-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
42 lines (41 loc) · 1.24 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
from setuptools import find_packages, setup
setup(
name="covert",
author="Covert Encryption",
author_email="[email protected]",
description="File and message encryption GUI and CLI",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/covert-encryption/covert",
use_scm_version=True,
setup_requires=["setuptools_scm"],
packages=find_packages(),
python_requires=">=3.9",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"License :: Public Domain",
"Operating System :: OS Independent",
],
install_requires=[
"bcrypt>=3.0.0",
"colorama>=0.4",
"cryptography>=35",
"pynacl>=1.5",
"tqdm>=4.62",
"msgpack>=1.0",
"pyperclip>=1.8",
"zxcvbn-covert>=5.0.1",
"xdg>=5.1.1",
],
extras_require={
"gui": ["pyside6>=6.2.1", "show-in-file-manager>=1.1.3"],
"test": ["pytest", "pytest-sugar", "pytest-mock", "coverage", "mypy", "bandit"],
"dev": ["tox", "isort", "yapf"],
},
include_package_data=True,
entry_points=dict(
console_scripts=["covert = covert.cli.__main__:main"],
gui_scripts=["qcovert = covert.gui.__main__:main [gui]"],
),
)