-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (30 loc) · 1.01 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
#!/usr/bin/env python
import sys
from setuptools import setup, find_packages
long_description = open('README').read()
setup(
name='crm_creator',
version='0.1',
description='crm_creator is a simple tool for virtual machine configuration with pacemaker, libvirt and DRBD.',
long_description=long_description,
author='Lipin Dmitriy',
author_email='[email protected]',
url='https://github.com/blackwithwhite666/crm_creator',
packages=find_packages(),
install_requires=['paramiko'],
entry_points={
'console_scripts': [
'config-vm = crm_creator.cli:main',
]
},
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: Linux',
'Programming Language :: Python',
'Topic :: System :: Clustering',
'Topic :: System :: Systems Administration',
],
)