1from distutils.core import setup
2
3setup(
4    name='perfetto',
5    packages=['perfetto', 'perfetto.trace_processor'],
6    package_data={'perfetto.trace_processor': ['*.descriptor']},
7    include_package_data=True,
8    version='0.2.9',
9    license='apache-2.0',
10    description='Python API for Perfetto\'s Trace Processor',
11    author='Perfetto',
12    author_email='perfetto-pypi@google.com',
13    url='https://perfetto.dev/',
14    download_url='https://github.com/google/perfetto/archive/v6.0.tar.gz',
15    keywords=['trace processor', 'tracing', 'perfetto'],
16    install_requires=[
17        'protobuf',
18    ],
19    classifiers=[
20        'Development Status :: 3 - Alpha',
21        'License :: OSI Approved :: Apache Software License',
22        "Programming Language :: Python :: 3",
23        "Programming Language :: Python :: 3.5",
24        "Programming Language :: Python :: 3.6",
25        "Programming Language :: Python :: 3.7",
26        "Programming Language :: Python :: 3.8",
27        "Programming Language :: Python :: 3.9",
28    ],
29)
30