[Python PyPI] Added classifiers and more links. Fixes typo and #5215 (#5272)

This commit is contained in:
Will Stott
2019-05-08 20:42:20 +01:00
committed by Robert
parent e47ca7ab40
commit 103f61b685

View File

@@ -47,11 +47,25 @@ setup(
license='Apache 2.0',
author='FlatBuffers Contributors',
author_email='me@rwinslow.com',
url='https://github.com/google/flatbuffers',
long_description=('Python runtime library for use with the Flatbuffers'
url='https://google.github.io/flatbuffers/',
long_description=('Python runtime library for use with the '
'`Flatbuffers <https://google.github.io/flatbuffers/>`_ '
'serialization format.'),
packages=['flatbuffers'],
include_package_data=True,
requires=[],
description='The FlatBuffers serialization format for Python',
)
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
],
project_urls={
'Documentation': 'https://google.github.io/flatbuffers/',
'Source': 'https://github.com/google/flatbuffers',
},
)