add in 2 more ALUs, now 4x4 scoreboard
[soc.git] / setup.py
1 from setuptools import setup, find_packages
2 import sys, os
3
4 here = os.path.abspath(os.path.dirname(__file__))
5 README = open(os.path.join(here, 'README.md')).read()
6 NEWS = open(os.path.join(here, 'NEWS.txt')).read()
7
8
9 version = '0.0.1'
10
11 install_requires = [
12 'sfpy',
13 'ieee754fpu',
14 ]
15
16 test_requires = [
17 'nose',
18 ]
19
20 setup(
21 name='soc',
22 version=version,
23 description="A nmigen-based RISC-V Hybrid CPU / VPU / GPU",
24 long_description=README + '\n\n' + NEWS,
25 classifiers=[
26 "Topic :: Software Development :: Libraries",
27 "License :: OSI Approved :: LGPLv3+",
28 "Programming Language :: Python :: 3",
29 ],
30 keywords='nmigen ieee754 libre-riscv soc',
31 author='Luke Kenneth Casson Leighton',
32 author_email='lkcl@libre-riscv.org',
33 url='http://git.libre-riscv.org/?p=soc',
34 license='GPLv3+',
35 packages=find_packages('src'),
36 package_dir = {'': 'src'},
37 include_package_data=True,
38 zip_safe=False,
39 install_requires=install_requires,
40 tests_require=test_requires,
41 test_suite='nose.collector',
42 )