-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
23 lines (22 loc) · 860 Bytes
/
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
from setuptools import setup, find_packages
setup(name='cloudinit',
version='0.3.9',
description='Framework for early Linux guest initialization',
url='https://github.com/akamac/cloud-init',
author='Alexey Miasoedov',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'],
keywords='cloud-init initialization ubuntu debian',
packages=find_packages(), # ['cloudinit', 'cloudinit.plugins'],
entry_points={
'console_scripts': [
'cloud-init = cloudinit.__main__:main'
]
},
zip_safe=False)