Update pypi info (#480)

* Update pypi info

* Using python_requires to makesure pip only download on supported versions of python
This commit is contained in:
Karthik Nadig 2018-06-15 12:59:01 -07:00 committed by GitHub
parent 0d7e0d2656
commit 5464b0d3cf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 6 deletions

View file

@ -1,3 +1,3 @@
ptvsd is a remote debugging server for Python tooling in Visual Studio and Visual Studio Code.
The Python Visual Studio Debugger engine implements the Visual Studio Code debug protocol and is used as the debug engine in Visual Studio and Visual Studio Code.
The source code and the issue tracker is [hosted on GitHub](https://github.com/Microsoft/ptvsd/).

View file

@ -39,6 +39,10 @@ def iter_vendored_files():
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()
@ -47,17 +51,22 @@ if __name__ == '__main__':
name='ptvsd',
version=versioneer.get_version(),
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',
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.*,!=3.4.*",
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 2.7',
'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=[