mirror of
https://github.com/microsoft/debugpy.git
synced 2025-12-23 08:48:12 +00:00
Add package information.
This commit is contained in:
parent
528b371077
commit
6698947e87
3 changed files with 10 additions and 2 deletions
3
DESCRIPTION.md
Normal file
3
DESCRIPTION.md
Normal 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
0
ptvsd/dummy.txt
Normal file
9
setup.py
9
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',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue