Skip to content

Commit 526146b

Browse files
author
Kin Long Kelvin Lee
committed
setup: removing redundant specification from setup.py
Signed-off-by: Kin Long Kelvin Lee <kin.long.kelvin.lee@intel.com>
1 parent c55f770 commit 526146b

File tree

1 file changed

+3
-31
lines changed

1 file changed

+3
-31
lines changed

setup.py

Lines changed: 3 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,8 @@
11
#!/usr/bin/env python3
2-
# Copyright (C) 2019 Intel Corporation
2+
# Copyright (C) 2019-24 Intel Corporation
33
# SPDX-License-Identifier: BSD-3-Clause
44

55
from setuptools import setup
66

7-
setup(
8-
name="codebasin",
9-
version="1.2.0",
10-
description="Code Base Investigator",
11-
author="John Pennycook",
12-
author_email="john.pennycook@intel.com",
13-
url="https://www.github.com/intel/code-base-investigator",
14-
packages=["codebasin", "codebasin.schema", "codebasin.walkers"],
15-
include_package_data=True,
16-
scripts=["bin/codebasin"],
17-
classifiers=[
18-
"Development Status :: 5 - Production/Stable",
19-
"Environment :: Console",
20-
"Intended Audience :: Developers",
21-
"License :: OSI Approved :: BSD License",
22-
"Programming Language :: Python",
23-
"Programming Language :: Python :: 3",
24-
"Programming Language :: Python :: 3.12",
25-
"Topic :: Software Development",
26-
],
27-
python_requires=">=3.12",
28-
install_requires=[
29-
"numpy==1.26.0",
30-
"matplotlib==3.8.2",
31-
"pathspec==0.12.1",
32-
"pyyaml==6.0.1",
33-
"scipy==1.12.0",
34-
"jsonschema==4.21.1",
35-
],
36-
)
7+
if __name__ == "__main__":
8+
setup()

0 commit comments

Comments
 (0)