mirror of
https://github.com/microsoft/debugpy.git
synced 2025-12-23 08:48:12 +00:00
* Add new JSON IPC implementation to be shared between the product and the tests. Add pytest-based test support, and wire it up to setup.py and Travis. Dial pylint down to complain about important things only. Various minor fixes exposed by pylint. Add basic .vscode/settings.json for linter settings (and anything else that's workspace-specific). Fixes #831.
84 lines
2.6 KiB
Python
84 lines
2.6 KiB
Python
#!/usr/bin/env python
|
|
|
|
# Copyright (c) Microsoft Corporation. All rights reserved.
|
|
# Licensed under the MIT License. See LICENSE in the project root
|
|
# for license information.
|
|
|
|
import os
|
|
import os.path
|
|
import subprocess
|
|
import sys
|
|
|
|
from setuptools import setup
|
|
|
|
import versioneer
|
|
import ptvsd
|
|
import ptvsd._vendored
|
|
|
|
|
|
PYDEVD_ROOT = ptvsd._vendored.project_root('pydevd')
|
|
PTVSD_ROOT = os.path.dirname(os.path.abspath(ptvsd.__file__))
|
|
|
|
|
|
def cython_build():
|
|
print('Compiling extension modules (set SKIP_CYTHON_BUILD=1 to omit)')
|
|
subprocess.call([
|
|
sys.executable,
|
|
os.path.join(PYDEVD_ROOT, 'setup_cython.py'),
|
|
'build_ext',
|
|
'-i',
|
|
])
|
|
|
|
|
|
def iter_vendored_files():
|
|
# Add pydevd files as data files for this package. They are not
|
|
# treated as a package of their own, because we don't actually
|
|
# want to provide pydevd - just use our own copy internally.
|
|
for project in ptvsd._vendored.list_all():
|
|
for filename in ptvsd._vendored.iter_packaging_files(project):
|
|
yield filename
|
|
|
|
|
|
with open('DESCRIPTION.md', 'r') as fh:
|
|
long_description = fh.read()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
if not os.getenv('SKIP_CYTHON_BUILD'):
|
|
cython_build()
|
|
|
|
setup(
|
|
name='ptvsd',
|
|
version=versioneer.get_version(),
|
|
description='Remote debugging server for Python support in Visual Studio and Visual Studio Code', # noqa
|
|
long_description=long_description,
|
|
long_description_content_type='text/markdown',
|
|
license='MIT',
|
|
author='Microsoft Corporation',
|
|
author_email='ptvshelp@microsoft.com',
|
|
url='https://aka.ms/ptvs',
|
|
python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*',
|
|
setup_requires=['pytest_runner>=4.2'],
|
|
tests_require=['pytest>=3.8', 'pytest-timeout>=1.3'],
|
|
classifiers=[
|
|
'Development Status :: 5 - Production/Stable',
|
|
'Programming Language :: Python :: 2.7',
|
|
'Programming Language :: Python :: 3.4',
|
|
'Programming Language :: Python :: 3.5',
|
|
'Programming Language :: Python :: 3.6',
|
|
'Programming Language :: Python :: 3.7',
|
|
'Topic :: Software Development :: Debuggers',
|
|
'Operating System :: OS Independent',
|
|
'License :: OSI Approved :: Eclipse Public License 2.0 (EPL-2.0)',
|
|
'License :: OSI Approved :: MIT License',
|
|
],
|
|
packages=[
|
|
'ptvsd',
|
|
'ptvsd._vendored',
|
|
],
|
|
package_data={
|
|
'ptvsd': ['ThirdPartyNotices.txt'],
|
|
'ptvsd._vendored': list(iter_vendored_files()),
|
|
},
|
|
cmdclass=versioneer.get_cmdclass(),
|
|
)
|