Commit 967fe63c authored by Raptor Engineering Development Team's avatar Raptor Engineering Development Team
Browse files

Revert "Replace setup.py with pyproject.toml"

This reverts commit 2cfee3e0.
parent c7778c64
#!/usr/bin/env python3
import sys
from setuptools import setup
from setuptools import find_packages
if sys.version_info[:3] < (3, 3):
raise SystemExit("You need Python 3.3+")
requirements = ["colorama"]
setup(
name="migen",
version="0.9.2",
long_description_content_type='text/markdown',
description="Python toolbox for building complex digital hardware",
long_description=open("README.md").read(),
author="Sebastien Bourdeauducq",
author_email="sb@m-labs.hk",
url="https://m-labs.hk",
download_url="https://github.com/m-labs/migen",
packages=find_packages(),
install_requires=requirements,
test_suite="migen.test",
license="BSD",
platforms=["Any"],
keywords=["HDL", "ASIC", "FPGA", "hardware design"],
classifiers=[
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
"Environment :: Console",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7"
],
)
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment