-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (43 loc) · 1.43 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
import RC4Encryption as package
from setuptools import setup
setup(
name=package.__name__,
version=package.__version__,
py_modules=[package.__name__],
install_requires=[],
author=package.__author__,
author_email=package.__author_email__,
maintainer=package.__maintainer__,
maintainer_email=package.__maintainer_email__,
description=package.__description__,
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url=package.__url__,
project_urls={
"Documentation": "https://mauricelambert.github.io/info/python/security/RC4Encryption.html",
"Executable": "https://mauricelambert.github.io/info/python/security/RC4Encryption.pyz",
},
classifiers=[
"Programming Language :: Python",
"Development Status :: 5 - Production/Stable",
"Topic :: Security :: Cryptography",
"Natural Language :: English",
"Programming Language :: Python :: 3.9",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
],
entry_points={
"console_scripts": [
"rc4 = RC4Encryption:main",
],
},
python_requires=">=3.8",
keywords=[
"RC4",
"Encryption",
"Cipher",
],
platforms=["Windows", "Linux", "MacOS"],
license=package.__license__,
)