Austin Schuh | e89fa2d | 2019-08-14 20:24:23 -0700 | [diff] [blame] | 1 | # Copyright 2016 Google Inc. All rights reserved. |
| 2 | # |
| 3 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | # you may not use this file except in compliance with the License. |
| 5 | # You may obtain a copy of the License at |
| 6 | # |
| 7 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | # |
| 9 | # Unless required by applicable law or agreed to in writing, software |
| 10 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | # See the License for the specific language governing permissions and |
| 13 | # limitations under the License. |
| 14 | |
Austin Schuh | e89fa2d | 2019-08-14 20:24:23 -0700 | [diff] [blame] | 15 | from setuptools import setup |
| 16 | |
Austin Schuh | e89fa2d | 2019-08-14 20:24:23 -0700 | [diff] [blame] | 17 | setup( |
| 18 | name='flatbuffers', |
James Kuszmaul | 3b15b0c | 2022-11-08 14:03:16 -0800 | [diff] [blame] | 19 | version='22.10.26', |
Austin Schuh | e89fa2d | 2019-08-14 20:24:23 -0700 | [diff] [blame] | 20 | license='Apache 2.0', |
James Kuszmaul | 3b15b0c | 2022-11-08 14:03:16 -0800 | [diff] [blame] | 21 | author='Derek Bailey', |
| 22 | author_email='derekbailey@google.com', |
Austin Schuh | e89fa2d | 2019-08-14 20:24:23 -0700 | [diff] [blame] | 23 | url='https://google.github.io/flatbuffers/', |
| 24 | long_description=('Python runtime library for use with the ' |
| 25 | '`Flatbuffers <https://google.github.io/flatbuffers/>`_ ' |
| 26 | 'serialization format.'), |
| 27 | packages=['flatbuffers'], |
| 28 | include_package_data=True, |
| 29 | requires=[], |
| 30 | description='The FlatBuffers serialization format for Python', |
| 31 | classifiers=[ |
| 32 | 'Intended Audience :: Developers', |
| 33 | 'License :: OSI Approved :: Apache Software License', |
| 34 | 'Operating System :: OS Independent', |
| 35 | 'Programming Language :: Python', |
| 36 | 'Programming Language :: Python :: 2', |
| 37 | 'Programming Language :: Python :: 3', |
| 38 | 'Topic :: Software Development :: Libraries :: Python Modules', |
| 39 | ], |
| 40 | project_urls={ |
| 41 | 'Documentation': 'https://google.github.io/flatbuffers/', |
| 42 | 'Source': 'https://github.com/google/flatbuffers', |
| 43 | }, |
James Kuszmaul | 3b15b0c | 2022-11-08 14:03:16 -0800 | [diff] [blame] | 44 | ) |