forked from ponty/PyVirtualDisplay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
73 lines (65 loc) · 2.26 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
from setuptools import setup
import os.path
import sys
if os.environ.get('distutils_issue8876_workaround_enabled', False):
# sdist_hack: Remove reference to os.link to disable using hardlinks when
# building setup.py's sdist target. This is done because
# VirtualBox VMs shared filesystems don't support hardlinks.
del os.link
NAME = 'pyvirtualdisplay'
PYPI_NAME = 'PyVirtualDisplay'
URL = 'https://github.com/ponty/pyvirtualdisplay'
DESCRIPTION = 'python wrapper for Xvfb, Xephyr and Xvnc'
PACKAGES = [NAME,
NAME + '.examples',
]
# get __version__
__version__ = None
exec(open(os.path.join(NAME, 'about.py')).read())
VERSION = __version__
extra = {}
if sys.version_info >= (3,):
extra['use_2to3'] = True
extra['use_2to3_exclude_fixers'] = ['lib2to3.fixes.fix_import']
classifiers = [
# Get more strings from
# http://www.python.org/pypi?%3Aaction=list_classifiers
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
# "Programming Language :: Python :: 2.3",
# "Programming Language :: Python :: 2.4",
#"Programming Language :: Python :: 2.5",
#'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
# "Programming Language :: Python :: 2 :: Only",
"Programming Language :: Python :: 3",
# 'Programming Language :: Python :: 3.0',
# "Programming Language :: Python :: 3.1",
# 'Programming Language :: Python :: 3.2',
# 'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
]
install_requires = ['EasyProcess']
setup(
name=PYPI_NAME,
version=VERSION,
description=DESCRIPTION,
long_description=open('README.rst', 'r').read(),
classifiers=classifiers,
keywords='Xvfb Xephyr X wrapper',
author='ponty',
# author_email='',
url=URL,
license='BSD',
packages=PACKAGES,
# include_package_data=True,
# test_suite='nose.collector',
# zip_safe=False,
install_requires=install_requires,
**extra
)