diff --git a/DESCRIPTION.md b/DESCRIPTION.md new file mode 100644 index 00000000..dbe1a40a --- /dev/null +++ b/DESCRIPTION.md @@ -0,0 +1,3 @@ +ptvsd is a remote debugging server for Python tooling in Visual Studio and Visual Studio Code. + +The source code and the issue tracker is [hosted on GitHub](https://github.com/Microsoft/ptvsd/). diff --git a/ptvsd/dummy.txt b/ptvsd/dummy.txt new file mode 100644 index 00000000..e69de29b diff --git a/setup.py b/setup.py index f6dabf40..c3572a39 100644 --- a/setup.py +++ b/setup.py @@ -44,13 +44,18 @@ def get_pydevd_package_data(): PACKAGE_DATA = { - 'ptvsd': list(get_pydevd_package_data()) + ['ThirdPartyNotices.txt'], + 'ptvsd': (list(get_pydevd_package_data()) + + ['ThirdPartyNotices.txt'] + + ['dummy.txt'] if sys.version_info < (3,) else [] + ) } setup( name='ptvsd', version='4.0.0a5', - description='Visual Studio remote debugging server for Python', + description='Remote debugging server for Python support in Visual Studio and Visual Studio Code', # noqa + long_description=open('DESCRIPTION.md').read(), + long_description_content_type='text/markdown', license='MIT', author='Microsoft Corporation', author_email='ptvshelp@microsoft.com',