File tree Expand file tree Collapse file tree 6 files changed +89
-0
lines changed Expand file tree Collapse file tree 6 files changed +89
-0
lines changed Original file line number Diff line number Diff line change 1+ #!/usr/bin/env python3
2+ # -*- coding: utf-8 -*-
3+ #
4+ # Copyright (C) 2021 The SymbiFlow Authors.
5+ #
6+ # Use of this source code is governed by a ISC-style
7+ # license that can be found in the LICENSE file or at
8+ # https://opensource.org/licenses/ISC
9+ #
10+ # SPDX-License-Identifier: ISC
Original file line number Diff line number Diff line change 1+ #!/usr/bin/env python3
2+ # -*- coding: utf-8 -*-
3+ #
4+ # Copyright (C) 2021 The SymbiFlow Authors.
5+ #
6+ # Use of this source code is governed by a ISC-style
7+ # license that can be found in the LICENSE file or at
8+ # https://opensource.org/licenses/ISC
9+ #
10+ # SPDX-License-Identifier: ISC
Original file line number Diff line number Diff line change 1+ #!/usr/bin/env python3
2+ # -*- coding: utf-8 -*-
3+ #
4+ # Copyright (C) 2021 The SymbiFlow Authors.
5+ #
6+ # Use of this source code is governed by a ISC-style
7+ # license that can be found in the LICENSE file or at
8+ # https://opensource.org/licenses/ISC
9+ #
10+ # SPDX-License-Identifier: ISC
Original file line number Diff line number Diff line change 1+ #!/usr/bin/env python3
2+ # -*- coding: utf-8 -*-
3+ #
4+ # Copyright (C) 2021 The SymbiFlow Authors.
5+ #
6+ # Use of this source code is governed by a ISC-style
7+ # license that can be found in the LICENSE file or at
8+ # https://opensource.org/licenses/ISC
9+ #
10+ # SPDX-License-Identifier: ISC
11+
12+ import setuptools
13+
14+ with open ("README.md" , "r" ) as fh :
15+ long_description = fh .read ()
16+
17+ setuptools .setup (
18+ name = "fpga-tool-perf" ,
19+ version = "0.0.1" ,
20+ entry_points = {
21+ "console_scripts" :
22+ [
23+ "fpga-tool-perf-exhaust=exhaust:main" ,
24+ "fpga-tool-perf=fpgaperf:main"
25+ ]
26+ },
27+ author = "SymbiFlow Authors" ,
28+ author_email = "symbiflow@lists.librecores.org" ,
29+ description = "Python library to run FPGA benchmarks on various toolchains" ,
30+ long_description = long_description ,
31+ long_description_content_type = "text/x-rst" ,
32+ url = "https://github.com/SymbiFlow/fpga-tool-perf" ,
33+ packages = setuptools .find_packages (),
34+ classifiers = [
35+ "Programming Language :: Python :: 3" ,
36+ "License :: OSI Approved :: ISC License" ,
37+ "Operating System :: OS Independent" ,
38+ ],
39+ )
Original file line number Diff line number Diff line change 1+ #!/usr/bin/env python3
2+ # -*- coding: utf-8 -*-
3+ #
4+ # Copyright (C) 2021 The SymbiFlow Authors.
5+ #
6+ # Use of this source code is governed by a ISC-style
7+ # license that can be found in the LICENSE file or at
8+ # https://opensource.org/licenses/ISC
9+ #
10+ # SPDX-License-Identifier: ISC
Original file line number Diff line number Diff line change 1+ #!/usr/bin/env python3
2+ # -*- coding: utf-8 -*-
3+ #
4+ # Copyright (C) 2021 The SymbiFlow Authors.
5+ #
6+ # Use of this source code is governed by a ISC-style
7+ # license that can be found in the LICENSE file or at
8+ # https://opensource.org/licenses/ISC
9+ #
10+ # SPDX-License-Identifier: ISC
You can’t perform that action at this time.
0 commit comments