Add package information.

This commit is contained in:
Pavel Minaev 2018-03-28 13:24:23 -07:00
parent 528b371077
commit 6698947e87
3 changed files with 10 additions and 2 deletions

3
DESCRIPTION.md Normal file
View file

@ -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/).

0
ptvsd/dummy.txt Normal file
View file

View file

@ -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',