-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
29 lines (26 loc) · 853 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
# SPDX-FileCopyrightText: 2024 Tobias Kaiser <[email protected]>
# SPDX-License-Identifier: Apache-2.0
import setuptools
exec(open('pydesignflow/version.py').read()) # --> __version__
setuptools.setup(
name="pydesignflow",
version=__version__,
author="Tobias Kaiser",
author_email="[email protected]",
description="Micro-Framework for FPGA / VLSI Design Flow in Python",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
"License :: OSI Approved :: Apache Software License",
],
python_requires='>=3.8',
install_requires=[
"tabulate >= 0.8.0",
],
entry_points={
"console_scripts": [
"flow = pydesignflow.shortcut:main"
]
},
)