-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
105 lines (91 loc) · 3.08 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
This setup script packages pyqode.python
"""
import sys
from setuptools import setup, find_packages
from pyqode.python import __version__
from setuptools.command.test import test as TestCommand
#
# add ``build_ui command`` (optional, for development only)
# this command requires the following packages:
# - pyqt_distutils
# - pyqode-uic
#
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
if self.pytest_args:
self.pytest_args = self.pytest_args.replace('"', '').split(' ')
else:
self.pytest_args = []
print('running test command: py.test "%s"' % ' '.join(
self.pytest_args))
errno = pytest.main(self.pytest_args)
sys.exit(errno)
cmdclass['test'] = PyTest
DESCRIPTION = 'Adds python support to pyqode.core'
def readme():
if 'bdist_deb' in sys.argv:
return DESCRIPTION
return str(open('README.rst').read())
# get requirements
requirements = [
'pyqode.qt',
'pyqode.core',
'jedi',
'pycodestyle',
'pyflakes',
'docutils'
]
setup(
name='pyqode.python',
namespace_packages=['pyqode'],
version=__version__,
packages=[p for p in find_packages() if 'test' not in p],
keywords=["CodeEdit PySide PyQt code editor widget python"],
package_dir={'pyqode': 'pyqode'},
url='https://github.com/pyQode/pyqode.python',
license='MIT',
author='Colin Duquesnoy',
author_email='[email protected]',
description=DESCRIPTION,
long_description=readme(),
install_requires=requirements,
tests_require=['pytest-cov', 'pytest-pep8', 'pytest'],
entry_points={'pyqode_plugins':
['pyqode_python = '
'pyqode.python.designer_plugin']},
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',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Widget Sets',
'Topic :: Text Editors :: Integrated Development Environments (IDE)'
]
)