-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
47 lines (41 loc) · 1.44 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
41
42
43
44
45
46
47
#!/usr/bin/env python
# *-* coding: utf-8 *-*
from os import path
from setuptools import setup, find_packages
with open('VERSION') as v_file:
version = v_file.read().strip()
def read(fname):
return open(path.join(path.dirname(__file__), fname)).read()
setup(
name='vbox_sdk',
packages=find_packages(exclude=['docs', ]),
version=version,
license='Unlicense',
description='The VirtualBox Software Developer Kit as available from https://www.virtualbox.org/wiki/Downloads',
long_description=read('README.rst'),
author='Oracle Corp.',
author_email='[email protected]',
maintainer='Mike Mabey',
maintainer_email='[email protected]',
url='https://github.com/mmabey/vbox_sdk',
download_url='https://github.com/mmabey/vbox_sdk/archive/v{}.tar.gz'.format(version),
# install_requires=[x.strip() for x in open('requirements.txt')],
keywords=[
'vbox',
'vbox api',
'vbox sdk',
'VirtualBox',
'Oracle',
'virtual machine manager',
],
classifiers=[ # Full list at: https://pypi.python.org/pypi?%3Aaction=list_classifiers
'Intended Audience :: Developers',
# Operating systems supported
'Operating System :: POSIX',
'Operating System :: POSIX :: Linux',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS',
# Versions of Python supported
'Programming Language :: Python :: 2.7',
],
)