-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
73 lines (57 loc) · 2.09 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# Copyright (c) 2019-2024 Riverbed Technology, Inc.
#
# This software is licensed under the terms and conditions of the MIT License
# accompanying the software ("License"). This software is distributed "AS IS"
# as set forth in the License.
from glob import glob
from setuptools import setup, find_packages
install_requires = (
'steelscript>=24.2.0',
'sleepwalker>=2.0',
'reschema>=2.0'
)
setup_args = {
'name': 'steelscript.appresponse',
'version': '24.2.1',
'author': 'Riverbed Technology',
'author_email': '[email protected]',
'url': 'http://pythonhosted.org/steelscript',
'license': 'MIT',
'description': 'Python modules to interact AppResponse via its REST API',
'long_description': """SteelScript for AppResponse
===========================
Python modules to interact AppResponse via REST API.
For a complete guide to installation, see:
http://pythonhosted.org/steelscript/
""",
'platforms': 'Linux, Mac OS, Windows',
'classifiers': [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
'Topic :: System :: Networking',
],
'python_requires': '>3.5.0',
'packages': find_packages(exclude=('gitpy_versioning',)),
'data_files': (
('share/doc/steelscript/docs/appresponse', glob('docs/*')),
('share/doc/steelscript/examples/appresponse', glob('examples/*')),
),
'zip_safe': False,
'install_requires': install_requires,
'extras_require': None,
'test_suite': '',
'include_package_data': True,
'entry_points': {
'steel.commands': [
'appresponse = steelscript.appresponse.commands'
],
'portal.plugins': [
'appresponse = steelscript.appresponse.appfwk.plugin:AppResponsePlugin'
],
},
}
setup(**setup_args)