-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathsetup.py
executable file
·40 lines (37 loc) · 1.09 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
meta = {}
exec(open('meta.py').read(), meta)
setup(
name=meta.get('NAME'),
version=meta.get('VERSION'),
description=meta.get('DESCRIPTION'),
long_description=''.join(open('docs/Virt-v2v-wrapper.md').readlines()),
keywords=meta.get('KEYWORDS'),
author=meta.get('AUTHOR'),
author_email=meta.get('EMAIL'),
license=meta.get('LICENSE'),
packages=find_packages(),
entry_points={
'console_scripts': [
'virt-v2v-wrapper = wrapper.virt_v2v_wrapper:main'
]
},
install_requires=[
'pycurl',
'six'
],
extras_require={
'ovirt': 'ovirt-engine-sdk-python',
},
# tests_require=['tox'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: Apache Software License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
]
)