-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathsetup.py
More file actions
79 lines (70 loc) · 2.26 KB
/
setup.py
File metadata and controls
79 lines (70 loc) · 2.26 KB
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
This setup script packages pyqode.python
"""
from setuptools import setup, find_packages
#
# 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 = {}
def read_version():
with open("pyqode/python/__init__.py") as f:
lines = f.read().splitlines()
for l in lines:
if "__version__" in l:
return l.split("=")[1].strip().replace('"', '').replace(
"'", '')
def readme():
return str(open('README.rst').read())
# get requirements
requirements = [
'pyqode.qt',
'pyqode.core>=2.3.0',
'jedi>=0.8',
'pep8',
'frosted',
'docutils'
]
setup(
name='pyqode.python',
namespace_packages=['pyqode'],
version=read_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='colin.duquesnoy@gmail.com',
description='Add python support to pyqode',
long_description=readme(),
install_requires=requirements,
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',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Widget Sets',
'Topic :: Text Editors :: Integrated Development Environments (IDE)'
]
)