-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
32 lines (29 loc) · 1 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
# Copyright (c) 2017 Interactive Intelligence, Inc.
from setuptools import setup, find_packages
install_reqs = [
'mohawk',
'requests[security]',
'retrying'
]
setup(name='threatstack',
version='1.2.1',
description='A Python client for the Threat Stack API',
license='MIT License',
author='Genesys Cloud Security Team',
author_email='[email protected]',
maintainer='Genesys Labs',
url='https://github.com/purecloudlabs/threatstack-python-client',
install_requires=install_reqs,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Topic :: Security',
],
packages=find_packages()
)