-
Notifications
You must be signed in to change notification settings - Fork 38
/
setup.py
34 lines (28 loc) · 974 Bytes
/
setup.py
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
29
30
31
32
33
34
# Copyright (c) Meta Platforms, Inc. and affiliates.
#
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.
from pathlib import Path
from setuptools import find_packages, setup
def _requirements():
return Path("requirements.txt").read_text()
setup(
name="fb-sapp",
version="0.5.6",
description="Static Analysis Post-Processor for processing taint analysis results.",
long_description=Path("README.md").read_text(),
long_description_content_type="text/markdown",
install_requires=_requirements(),
entry_points={"console_scripts": ["sapp = sapp.cli:cli"]},
packages=find_packages(),
url="https://github.com/facebook/sapp",
author="Facebook",
maintainer_email="[email protected]",
package_data={
"sapp.ui": [
"frontend/build/*",
"frontend/build/static/css/*",
"frontend/build/static/js/*",
],
},
)