-
Notifications
You must be signed in to change notification settings - Fork 26
/
setup.py
108 lines (93 loc) · 3.42 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Setup script for pyqode.core
"""
from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand
from pyqode.core import __version__
#
# add ``build_ui command`` (optional, for development only)
# this command requires the following packages:
# - pyqt-distutils
# - pyqode-uic
#
import sys
import os
os.environ['DEB_BUILD_OPTIONS'] = 'nocheck'
try:
from pyqt_distutils.build_ui import build_ui
cmdclass = {'build_ui': build_ui}
except ImportError:
cmdclass = {}
class PyTest(TestCommand):
user_options = [('pytest-args=', 'a', "Arguments to pass to py.test")]
def initialize_options(self):
TestCommand.initialize_options(self)
self.pytest_args = ""
def run_tests(self):
# import here, cause outside the eggs aren't loaded
import pytest
# force the use of boxed mode (each test will run in an isolated
# process)
if self.pytest_args:
self.pytest_args = self.pytest_args.replace('"', '').split(' ')
else:
self.pytest_args = []
if '--boxed' not in self.pytest_args:
self.pytest_args.insert(0, '--boxed')
print('running test command: py.test "%s"' % ' '.join(
self.pytest_args))
errno = pytest.main(self.pytest_args)
sys.exit(errno)
cmdclass['test'] = PyTest
pygments_req = 'pygments'
if sys.version_info[0] == 3 and sys.version_info[1] == 2:
# pygment 2 does not support Python 3.2
pygments_req += "==1.6"
DESCRIPTION = 'PyQt/PySide Source Code Editor Widget'
def readme():
if 'bdist_deb' in sys.argv or 'sdist_dsc' in sys.argv:
return DESCRIPTION
return str(open('README.rst').read())
setup(
name='pyqode.core',
namespace_packages=['pyqode'],
version=__version__,
packages=[p for p in find_packages() if 'test' not in p],
keywords=["CodeEdit PyQt source code editor widget qt"],
url='https://github.com/pyQode/pyqode.core',
license='MIT',
author='Colin Duquesnoy',
author_email='[email protected]',
description=DESCRIPTION,
long_description=readme(),
install_requires=[pygments_req, 'pyqode.qt', 'future'],
tests_require=['pytest-xdist', 'pytest-cov', 'pytest-pep8', 'pytest'],
entry_points={
'console_scripts': [
'pyqode-console = pyqode.core.tools.console:main'
],
'pyqode_plugins':
['code_edit = pyqode.core._designer_plugins'],
'pygments.styles':
['qt = pyqode.core.styles.qt:QtStyle',
'darcula = pyqode.core.styles.darcula:DarculaStyle']
},
zip_safe=False,
cmdclass=cmdclass,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: X11 Applications :: Qt',
'Environment :: Win32 (MS Windows)',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Widget Sets',
'Topic :: Text Editors :: Integrated Development Environments (IDE)'])