X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=setup.py;h=5664b046803d82c7c0b626d260a1dcbb4927566a;hb=f9d57ecac262565f7455ac3375a1c450723c377f;hp=246dd66bcfc5162eeb83d43375d20fa713e3fd6a;hpb=4595b9445697be40c332ef91bb9bdcb74e896629;p=soc.git diff --git a/setup.py b/setup.py index 246dd66b..5664b046 100644 --- a/setup.py +++ b/setup.py @@ -11,8 +11,9 @@ version = '0.0.1' install_requires = [ # 'sfpy', - 'ieee754fpu', # needs to be installed manually + 'ieee754fpu', # needs to be installed manually from git.libre-soc.org 'pygdbmi', + 'nmigen-soc', # install manually from git.libre-soc.org 'ply', # needs to be installed manually 'astor', ] @@ -24,17 +25,17 @@ test_requires = [ setup( name='soc', version=version, - description="A nmigen-based OpenPOWER Hybrid CPU / VPU / GPU", + description="A nmigen-based OpenPOWER multi-issue Hybrid CPU / VPU / GPU", long_description=README + '\n\n' + NEWS, classifiers=[ "Topic :: Software Development :: Libraries", "License :: OSI Approved :: LGPLv3+", "Programming Language :: Python :: 3", ], - keywords='nmigen ieee754 libre-riscv soc', + keywords='nmigen ieee754 libre-soc soc', author='Luke Kenneth Casson Leighton', - author_email='lkcl@libre-riscv.org', - url='http://git.libre-riscv.org/?p=soc', + author_email='lkcl@libre-soc.org', + url='http://git.libre-soc.org/?p=soc', license='GPLv3+', packages=find_packages('src'), package_dir={'': 'src'},