|
1 | 1 | #!/usr/bin/env python3
|
2 |
| -# Copyright (C) 2019 Intel Corporation |
| 2 | +# Copyright (C) 2019-24 Intel Corporation |
3 | 3 | # SPDX-License-Identifier: BSD-3-Clause
|
4 | 4 |
|
5 | 5 | from setuptools import setup
|
6 | 6 |
|
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