forked from salesforce/python-argusclient
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (30 loc) · 993 Bytes
/
setup.py
File metadata and controls
33 lines (30 loc) · 993 Bytes
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
33
#
# Copyright (c) 2016, salesforce.com, inc.
# All rights reserved.
# Licensed under the BSD 3-Clause license.
# For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
#
from setuptools import setup, find_packages
version = '0.3'
setup(name='argusclient',
version=version,
description="Minimal client library for Argus webservice REST API",
long_description="""\
""",
classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords='argus',
author='Hari Krishna Dara',
author_email='hdara@salesforce.com',
url='https://github.com/SalesforceEng/argusclient',
license='',
packages=find_packages(exclude=['ez_setup', 'tests']),
include_package_data=True,
zip_safe=True,
install_requires=[
"requests>=2.9.1",
"lxml>=3.2.3"
],
entry_points="""
# -*- Entry points: -*-
""",
)