forked from P3HPC/code-base-investigator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (31 loc) · 935 Bytes
/
setup.py
File metadata and controls
33 lines (31 loc) · 935 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
29
30
31
32
33
#!/usr/bin/env python3
# Copyright (C) 2019 Intel Corporation
# SPDX-License-Identifier: BSD-3-Clause
from setuptools import setup
setup(
name="codebasin",
version="1.1.1",
description="Code Base Investigator",
author="John Pennycook",
author_email="john.pennycook@intel.com",
url="https://www.github.com/intel/code-base-investigator",
packages=["codebasin", "codebasin.schema", "codebasin.walkers"],
include_package_data=True,
scripts=["codebasin.py"],
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Topic :: Software Development",
],
python_requires=">=3.9",
install_requires=[
"numpy",
"matplotlib",
"pyyaml",
"scipy>=1.11.1",
"jsonschema",
],
)