Skip to content

Commit b8c4aa0

Browse files
committed
Added requirements.txt and setup.py
1 parent 18c79b9 commit b8c4aa0

File tree

2 files changed

+29
-0
lines changed

2 files changed

+29
-0
lines changed

requirements.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
appdirs==1.4.0
2+
packaging==16.8
3+
pyparsing==2.1.10
4+
python-dateutil==2.6.0
5+
requests==2.12.5
6+
six==1.10.0

setup.py

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
from distutils.core import setup
2+
3+
setup(
4+
name = 'gophish',
5+
packages = ['gophish'],
6+
version = '0.1',
7+
description = 'Python API Client for Gophish',
8+
author = 'Jordan Wright',
9+
author_email = '[email protected]',
10+
url = 'https://github.com/gophish/api-client-python',
11+
license='MIT',
12+
download_url = 'https://github.com/gophish/api-client-python/tarball/0.1',
13+
keywords = ['gophish'],
14+
classifiers = [
15+
'Development Status :: 3 - Alpha',
16+
'Intended Audience :: Developers',
17+
'Natural Language :: English',
18+
'Programming Language :: Python',
19+
'Programming Language :: Python :: 2.7',
20+
'Programming Language :: Python :: 3',
21+
'Programming Language :: Python :: 3.3',
22+
],
23+
)

0 commit comments

Comments
 (0)