forked from clburlison/PyVMwareAirWatch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (18 loc) · 661 Bytes
/
Copy pathsetup.py
File metadata and controls
22 lines (18 loc) · 661 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import os
from setuptools import find_packages, setup
with open(os.path.join(os.path.dirname(__file__), 'README.md')) as readme:
README = readme.read()
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='PyVMwareAirWatch',
version='1.0.3',
description=('PyVMwareAirWatch is a Python API library for '
'[VMware AirWatch] (https://www.air-watch.com/) 9.1+'),
url='https://github.com/jprichards/PyVMwareAirWatch',
author='jprichards',
author_email='jprichards@example.com',
license='MIT',
packages=find_packages(),
include_package_data=True,
zip_safe=False
)