forked from facebookarchive/rbperf
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 995 Bytes
/
setup.py
File metadata and controls
28 lines (26 loc) · 995 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Copyright (c) Facebook, Inc. and its affiliates.
#
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.
from setuptools import setup, find_packages
setup(
name="rbperf",
version="0.1.0",
author="Javier Honduvilla Coto",
author_email="javierhonduco@gmail.com",
packages=find_packages(),
# We aren't following a standard Python project layout
# so this won't work well. While the single binary version
# of rbperf is developed, run rbperf with `bin/rbperf` from
# the project directory.
#
# entry_points={"console_scripts": ["rbperf = cli:main"],},
package_data={"rbperf": ["bpf/*", "vendor/*.pl"]},
include_package_data=True,
url="https://github.com/facebookexperimental/rbperf",
license="LICENSE.txt",
description="A Ruby BPF profiler",
long_description="A Ruby BPF profiler",
install_requires=["protobuf"],
extras_require={"dev": ["mypy"]},
)