litex: reorganize things, first work working version
[litex.git] / setup.py
index 921bcc20db1cf92576becd2ede2d0d5954c3c1c0..f1bb2abe9cc7080fdd32e793ae816a8e24ecb4d0 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -10,25 +10,32 @@ if sys.version_info[:3] < (3, 3):
 
 
 setup(
-    name="misoc",
+    name="litex",
     version="1.0",
-    description="a high performance and small footprint SoC based on Migen",
+    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",
-    packages=find_packages(),
+    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",
         "Programming Language :: Python",
     ],
+    packages=find_packages(),
+    include_package_data=True,
+    entry_points={
+        "console_scripts": [
+            "flterm=litex.soc.tools.flterm:main",
+            "mkmscimg=litex.soc.tools.mkmscimg:main",
+        ],
+    },
 )