com/liteethmini/phy: remove use of FlipFlop in MII
[litex.git] / setup.py
index 24013e2b03d5a64229fa31a6554c6c88a0c5f5ac..645267a19b69928b367cba50cd45d3c3e4c4a331 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -1,37 +1,38 @@
-#!/usr/bin/env python3\r
-\r
-import sys, os\r
-from setuptools import setup\r
-from setuptools import find_packages\r
-\r
-here = os.path.abspath(os.path.dirname(__file__))\r
-README = open(os.path.join(here, "README")).read()\r
-\r
-required_version = (3, 3)\r
-if sys.version_info < required_version:\r
-       raise SystemExit("MiSoC requires python {0} or greater".format(\r
-               ".".join(map(str, required_version))))\r
-\r
-setup(\r
-       name="misoclib",\r
-       version="unknown",\r
-       description="a high performance and small footprint SoC based on Migen",\r
-       long_description=README,\r
-       author="Sebastien Bourdeauducq",\r
-       author_email="sb@m-labs.hk",\r
-       url="http://m-labs.hk",\r
-       download_url="https://github.com/m-labs/misoc",\r
-       packages=find_packages(here),\r
-       license="BSD",\r
-       platforms=["Any"],\r
-       keywords="HDL ASIC FPGA hardware design",\r
-       classifiers=[\r
-               "Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",\r
-               "Environment :: Console",\r
-               "Development Status :: Alpha",\r
-               "Intended Audience :: Developers",\r
-               "License :: OSI Approved :: BSD License",\r
-               "Operating System :: OS Independent",\r
-               "Programming Language :: Python",\r
-       ],\r
-)\r
+#!/usr/bin/env python3
+
+import sys
+import os
+from setuptools import setup
+from setuptools import find_packages
+
+here = os.path.abspath(os.path.dirname(__file__))
+README = open(os.path.join(here, "README")).read()
+
+required_version = (3, 3)
+if sys.version_info < required_version:
+    raise SystemExit("MiSoC requires python {0} or greater".format(
+        ".".join(map(str, required_version))))
+
+setup(
+    name="misoclib",
+    version="unknown",
+    description="a high performance and small footprint SoC based on Migen",
+    long_description=README,
+    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(here),
+    license="BSD",
+    platforms=["Any"],
+    keywords="HDL ASIC FPGA hardware design",
+    classifiers=[
+        "Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
+        "Environment :: Console",
+        "Development Status :: Alpha",
+        "Intended Audience :: Developers",
+        "License :: OSI Approved :: BSD License",
+        "Operating System :: OS Independent",
+        "Programming Language :: Python",
+    ],
+)