forked from olofk/fusesoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (44 loc) · 1.33 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
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 = "olof.kindgren@gmail.com",
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 :: 3 - Alpha",
"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',
'pytest>=3.3.0',
'pyyaml',
'simplesat>=0.8.0',
],
)