blob: c351b01d828dc4cf1dee09839290bdf952d57656 [file] [log] [blame]
Austin Schuhe89fa2d2019-08-14 20:24:23 -07001# 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 Schuhe89fa2d2019-08-14 20:24:23 -070015from setuptools import setup
16
Austin Schuhe89fa2d2019-08-14 20:24:23 -070017setup(
18 name='flatbuffers',
James Kuszmaul3b15b0c2022-11-08 14:03:16 -080019 version='22.10.26',
Austin Schuhe89fa2d2019-08-14 20:24:23 -070020 license='Apache 2.0',
James Kuszmaul3b15b0c2022-11-08 14:03:16 -080021 author='Derek Bailey',
22 author_email='derekbailey@google.com',
Austin Schuhe89fa2d2019-08-14 20:24:23 -070023 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 Kuszmaul3b15b0c2022-11-08 14:03:16 -080044)