-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (24 loc) · 862 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
from setuptools import setup
setup(name='AWSIoTDeviceDefenderAgentSDK',
version='1.0',
description='AWS IoT Device Defender Agent SDK',
url='https://github.com/aws-samples/aws-iot-device-defender-agent-sdk-python',
author='Amazon Web Services',
author_email='[email protected]',
license='APACHE.20',
packages=['AWSIoTDeviceDefenderAgentSDK'],
install_requires=[
'psutil',
'cbor',
'AWSIoTPythonSDK'
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6'
],
zip_safe=False
)