-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
38 lines (32 loc) · 1.02 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
import codecs
import os
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
def read(*parts):
# intentionally *not* adding an encoding option to open
return codecs.open(os.path.join(here, *parts), 'r').read()
setup(
name='python-packer',
version='1.0.8-dev',
url='https://github.com/abhi1693/python-packer',
author='abhi1693',
author_email='[email protected]',
license='LICENSE',
platforms='All',
description='A Python interface for Hashicorp\'s Packer',
long_description=read('README.md'),
py_modules=['packer'],
install_requires=["sh"],
classifiers=[
'Programming Language :: Python',
'Natural Language :: English',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Apache Software License',
'Operating System :: POSIX :: Linux',
'Operating System :: Microsoft',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)