-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (22 loc) · 685 Bytes
/
setup.py
File metadata and controls
25 lines (22 loc) · 685 Bytes
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name="Time Authentication",
version='1.0',
description='Python package to exploit time based authentication faster',
author='SakiiR SakiiR',
author_email='sakiirlessons@gmail.com',
url='https://github.com/SakiiR/timeauth',
install_requires=[
'pwntools==3.5.1'
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Information Security :: Penetration Testing Tool',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
],
packages=[]
)