build/generic_platform: add support for int parameter for Pins (useful for core gener...
[litex.git] / setup.py
index 080b4291ae5801c04e5212e399ab6e38609bec13..e10cf41ecd1a9a6b1d21d818d8830bd7f76415f9 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -10,21 +10,21 @@ if sys.version_info[:3] < (3, 3):
 
 
 setup(
-    name="misoc",
-    version="0.2",
-    description="a high performance and small footprint SoC based on Migen",
+    name="litex",
+    version="1.0",
+    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",
     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 +34,10 @@ setup(
     include_package_data=True,
     entry_points={
         "console_scripts": [
-            "flterm=misoc.tools.flterm:main",
-            "mkmscimg=misoc.tools.mkmscimg:main",
+            "flterm=litex.soc.tools.flterm:main",
+            "mkmscimg=litex.soc.tools.mkmscimg:main",
+            "remote_server=litex.soc.tools.remote.server:main",
+            "remote_client=litex.soc.tools.remote.client:main"
         ],
     },
 )