forked from predat/pyIsis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·45 lines (38 loc) · 1.37 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
#!/usr/bin/env python
import os
from setuptools import setup
PKG_NAME = "pyIsis"
def readme():
with open('README.rst') as f:
return f.read()
def version():
version_file = os.path.join(os.path.dirname(os.path.abspath(__file__)),PKG_NAME,'VERSION')
with open(version_file,'rb') as fp:
_version = fp.read().strip()
return _version
setup(name=PKG_NAME,
version=version(),
description='Python wrapper for Avid Isis Client Management Console',
long_description=readme(),
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: MacOS X',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python',
'Topic :: System :: Systems Administration',
'Topic :: System :: Filesystems',
'Topic :: Utilities'
],
keywords='avid isis client mount workspace',
url='http://github.com/predat/pyIsis',
download_url = 'https://github.com/predat/pyIsis/tarball/' + version(),
author='Sylvain Maziere',
author_email='[email protected]',
license='MIT',
packages=['pyIsis'],
include_package_data=True,
install_requires=['osa','xmltodict'],
zip_safe=False)