almost all tests work
[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', # needs to be installed manually
14 'pygdbmi',
15 'ply', # needs to be installed manually
16 ]
17
18 test_requires = [
19 'nose',
20 ]
21
22 setup(
23 name='soc',
24 version=version,
25 description="A nmigen-based OpenPOWER Hybrid CPU / VPU / GPU",
26 long_description=README + '\n\n' + NEWS,
27 classifiers=[
28 "Topic :: Software Development :: Libraries",
29 "License :: OSI Approved :: LGPLv3+",
30 "Programming Language :: Python :: 3",
31 ],
32 keywords='nmigen ieee754 libre-riscv soc',
33 author='Luke Kenneth Casson Leighton',
34 author_email='lkcl@libre-riscv.org',
35 url='http://git.libre-riscv.org/?p=soc',
36 license='GPLv3+',
37 packages=find_packages('src'),
38 package_dir = {'': 'src'},
39 include_package_data=True,
40 zip_safe=False,
41 install_requires=install_requires,
42 tests_require=test_requires,
43 test_suite='nose.collector',
44 )