|  | 
|  | 1 | +""" | 
|  | 2 | +Copyright 2018 Matthew Aynalem | 
|  | 3 | + | 
|  | 4 | +Licensed under the Apache License, Version 2.0 (the "License"); | 
|  | 5 | +you may not use this file except in compliance with the License. | 
|  | 6 | +You may obtain a copy of the License at | 
|  | 7 | + | 
|  | 8 | +   http://www.apache.org/licenses/LICENSE-2.0 | 
|  | 9 | + | 
|  | 10 | +Unless required by applicable law or agreed to in writing, software | 
|  | 11 | +distributed under the License is distributed on an "AS IS" BASIS, | 
|  | 12 | +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 
|  | 13 | +See the License for the specific language governing permissions and | 
|  | 14 | +limitations under the License. | 
|  | 15 | +""" | 
|  | 16 | +from distutils.core import setup | 
|  | 17 | +from setuptools import find_packages | 
|  | 18 | + | 
|  | 19 | +setup( | 
|  | 20 | +    name='packer.py', | 
|  | 21 | +    version='0.3.0', | 
|  | 22 | +    author='Matthew Aynalem', | 
|  | 23 | + | 
|  | 24 | +    packages=['packerpy'], | 
|  | 25 | +    url='https://github.com/mayn/packer.py', | 
|  | 26 | +    license='Apache License 2.0', | 
|  | 27 | +    description='packer.py - python library to run hashicorp packer CLI commands', | 
|  | 28 | +    keywords="hashicorp packer", | 
|  | 29 | +    install_requires=[ | 
|  | 30 | +    ], | 
|  | 31 | +    classifiers=[ | 
|  | 32 | +        'License :: OSI Approved :: Apache Software License', | 
|  | 33 | +        'Programming Language :: Python :: 2', | 
|  | 34 | +        'Programming Language :: Python :: 2.7', | 
|  | 35 | +        'Programming Language :: Python :: 3', | 
|  | 36 | +        'Programming Language :: Python :: 3.4', | 
|  | 37 | +        'Programming Language :: Python :: 3.5', | 
|  | 38 | +        'Programming Language :: Python :: 3.6', | 
|  | 39 | +    ], | 
|  | 40 | +) | 
0 commit comments