forked from CLCMacTeam/besapi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 719 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 719 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
#!/usr/bin/env python
try:
from setuptools import setup
except:
from distutils.core import setup
setup(name='besapi',
version='0.6',
author='Matt Hansen',
author_email='hansen.m@psu.edu',
description="Library for working with the IBM BigFix REST API",
license="BSD",
keywords="bigfix ibm iem tem rest",
url="https://github.com/CLCMacTeam/besapi",
long_description=("python-besapi is a Python library designed to "
"interact with the BES (BigFix) REST API."),
py_modules=['besapi', 'bescli'],
package_data={
'besapi': ['schemas/*.xsd'],
},
install_requires=[
'requests',
'lxml',
],)