forked from puppetlabs-toy-chest/vmpooler-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·43 lines (36 loc) · 1.71 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
#===================================================================================================
# Imports
#===================================================================================================
try:
# setuptools is used to build wheels. Fallback to distutils if it isn't available.
from setuptools import setup
except ImportError:
from distutils.core import setup
from os import path
from vmpooler_client.version import version
def load_readme(readme_filename):
return open(path.join(path.dirname(__file__), readme_filename)).read()
#===================================================================================================
# Globals
#===================================================================================================
CLASSIFIERS = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: End Users/Desktop',
'Topic :: Utilities',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7']
#===================================================================================================
# Main
#===================================================================================================
setup(name='vmpooler-client',
version=version,
description='Manage resources in the vmpooler service from the command-line.',
long_description=load_readme("README.rst"),
author='Ryan Gard',
author_email='[email protected]',
url='https://github.com/puppetlabs/vmpooler-client',
packages=['vmpooler_client', 'vmpooler_client.commands'],
scripts=['vmpooler_client_app.py'],
classifiers=CLASSIFIERS)