forked from olofk/fusesoc
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
49 lines (45 loc) · 1.36 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="fusesoc",
packages=["fusesoc", "fusesoc.capi1", "fusesoc.capi2", "fusesoc.provider"],
use_scm_version={"relative_to": __file__, "write_to": "fusesoc/version.py",},
author="Olof Kindgren",
author_email="[email protected]",
description=(
"FuseSoC is a package manager and a set of build tools for HDL (Hardware Description Language) code."
),
license="GPLv3",
keywords=[
"VHDL",
"verilog",
"hdl",
"rtl",
"synthesis",
"FPGA",
"simulation",
"Xilinx",
"Altera",
],
url="https://github.com/olofk/fusesoc",
long_description=read("README.rst"),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Topic :: Utilities",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
],
entry_points={"console_scripts": ["fusesoc = fusesoc.main:main"]},
setup_requires=["setuptools_scm",],
install_requires=[
"edalize>=0.1.6",
"ipyxact>=0.2.3",
"pyparsing",
"pyyaml",
"simplesat>=0.8.0",
],
# Supported Python versions: 3.5+
python_requires=">=3.5, <4",
)