forked from gophish/api-client-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 757 Bytes
/
setup.py
File metadata and controls
23 lines (22 loc) · 757 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup
setup(
name='gophish',
packages=['gophish', 'gophish.api'],
version='0.2.5',
description='Python API Client for Gophish',
author='Jordan Wright',
author_email='python@getgophish.com',
url='https://github.com/gophish/api-client-python',
license='MIT',
download_url='https://github.com/gophish/api-client-python/tarball/0.2.2',
keywords=['gophish'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
],
)