Merge pull request #36 from mattkelly/fix-readme-typo
[litex.git] / setup.py
index 39cbcf4640cb7b5a4e93ba92051a80a83343e6a7..033a196cdfb8eb972c1fd8868ebca8dea22c61be 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -10,21 +10,22 @@ if sys.version_info[:3] < (3, 3):
 
 
 setup(
-    name="misoc",
-    version="1.0",
-    description="a high performance and small footprint SoC based on Migen",
+    name="litex",
+    version="0.1",
+    description="Python tools to design FPGA cores and SoCs",
     long_description=open("README").read(),
-    author="Sebastien Bourdeauducq",
-    author_email="sb@m-labs.hk",
-    url="http://m-labs.hk",
-    download_url="https://github.com/m-labs/misoc",
+    author="Florent Kermarrec",
+    author_email="florent@enjoy-digital.fr",
+    url="http://enjoy-digital.fr",
+    download_url="https://github.com/enjoy-digital/litex",
+    test_suite="test",
     license="BSD",
     platforms=["Any"],
     keywords="HDL ASIC FPGA hardware design",
     classifiers=[
         "Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
         "Environment :: Console",
-        "Development Status :: Alpha",
+        "Development Status :: Beta",
         "Intended Audience :: Developers",
         "License :: OSI Approved :: BSD License",
         "Operating System :: OS Independent",
@@ -34,8 +35,9 @@ setup(
     include_package_data=True,
     entry_points={
         "console_scripts": [
-            "flterm=misoc.tools.flterm:main",
-            "mkmscimg=misoc.tools.mkmscimg:main",
+            "litex_term=litex.soc.tools.litex_term:main",
+            "mkmscimg=litex.soc.tools.mkmscimg:main",
+            "litex_server=litex.soc.tools.remote.litex_server:main"
         ],
     },
 )