-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathsetup.py
44 lines (39 loc) · 1.36 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
33
34
35
36
37
38
39
40
41
42
43
44
#
# 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 = '1.4'
with open("README.rst", 'r') as fin:
README = fin.read()
setup(name='argusclient',
version=version,
description="Minimal client library for Argus webservice REST API",
long_description=README,
long_description_content_type="text/x-rst",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: BSD License",
"Intended Audience :: Developers",
"Topic :: System :: Monitoring",
], # 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="BSD-3-Clause",
packages=find_packages(exclude=['ez_setup', 'tests']),
include_package_data=True,
zip_safe=True,
install_requires=[
"six>=1.12.0",
"requests>=2.26.0",
"lxml>=4.6.3"
],
entry_points="""
# -*- Entry points: -*-
""",
)