-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
27 lines (26 loc) · 818 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
26
27
from setuptools import setup
setup(
name='threatconnect',
version='2.03',
description='Python wrapper for ThreatConnect API',
author='ThreatConnect',
author_email='support@threatconnect.com',
# package_dir = {'': 'src'},
packages=[
'threatconnect',
'threatconnect/Config',
'threatconnect/Resources'],
py_modules=[
'threatconnect',
'threatconnect/Config',
'threatconnect/Resources'],
# test_suite = '',
url='https://github.com/ThreatConnect-Inc/threatconnect-python',
license='GPLv3',
install_requires=['requests', 'enum34', 'python-dateutil', 'psutil'],
# test_suite = '',
use_2to3=True,
# convert_2to3_doctests = [''],
# use_2to3_fixers = [''],
use_2to3_exclude_fixers=['lib2to3.fixes.fix_print'],
)