forked from selectel/pyxs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·44 lines (34 loc) · 1.17 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
#! /usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
DESCRIPTION = "Pure Python bindings to XenStore."
try:
LONG_DESCRIPTION = open(os.path.join(here, "README")).read()
except IOError:
LONG_DESCRIPTION = ""
CLASSIFIERS = (
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
)
setup(name="pyxs",
version="0.4.2-dev",
packages=["pyxs"],
setup_requires=["pytest-runner"],
tests_require=["pytest"],
platforms=["any"],
author="Sergei Lebedev",
author_email="[email protected]",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
classifiers=CLASSIFIERS,
keywords=["xen", "xenstore", "virtualization"],
url="https://github.com/selectel/pyxs")