forked from Blueliv/api-python-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (26 loc) · 1.05 KB
/
Copy pathsetup.py
File metadata and controls
30 lines (26 loc) · 1.05 KB
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
from setuptools import setup, find_packages
setup(
name='blueliv-python-sdk',
version='1.1.0',
description='Blueliv API SDK for Python',
url='https://github.com/BluelivSecurity/api-python-sdk',
author='Blueliv',
author_email='community@blueliv.com',
license='MIT',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
],
keywords='blueliv api crime servers bot ips security',
packages=find_packages(exclude=['contrib', 'docs', 'tests*']),
install_requires=['requests>=2.4.0, <= 2.5.1', 'python-dateutil>=2.4.0'],
)