forked from RsaCtfTool/RsaCtfTool
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
31 lines (29 loc) · 938 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
31
from setuptools import setup
VERSION = "0.0.01"
BASE_CVS_URL = "https://github.com/Ganapati/RsaCtfTool"
setup(
name="RsaCtfTool",
packages=[
"RsaCtfTool",
],
version=VERSION,
author="Ganapati",
author_email="something",
install_requires=[x.strip() for x in open("requirements.txt").readlines()],
url=BASE_CVS_URL,
download_url="{}/tarball/{}".format(BASE_CVS_URL, VERSION),
keywords=[],
scripts=["RsaCtfTool.py"],
include_package_data=True,
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Operating System :: OS Independent",
"License :: THE BEER-WARE LICENSE",
"Topic :: Security :: Cryptography",
],
description="RSA multi attacks tool",
long_description=open("README.md", "r+").read(),
long_description_content_type="text/markdown",
)