-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
55 lines (52 loc) · 1.69 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
48
49
50
51
52
53
54
55
"""
Setup script for the encryption-helper package.
This script uses setuptools to define the package configuration,
including metadata, dependencies, and other installation details.
"""
from pathlib import Path
from setuptools import setup, find_packages
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name="encryption-helper",
version="0.0.1",
author="Sebastien Rousseau",
author_email="sebastien.rousseau-bedouch@hsbc.com",
description="A Python CLI application for generating RSA public and private key pairs",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/hsbc/encryption-helper-python",
packages=find_packages(),
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
],
install_requires=[
"cryptography>=43.0.0",
],
extras_require={
"dev": [
"pytest>=7.0",
"pytest-mock>=3.14.0",
"pylint>=3.2.6",
"bandit>=1.7.9",
],
},
keywords="rsa, keys, cryptography, encryption, decryption, python",
python_requires=">=3.8",
setup_requires=[
"build",
],
entry_points={
"console_scripts": [
"encryption-helper=encryption_helper.__main__:main",
],
},
)