litedram/setup.py

37 lines
1.1 KiB
Python
Raw Normal View History

2016-04-29 01:12:21 -04:00
#!/usr/bin/env python3
import sys
from setuptools import setup
from setuptools import find_packages
2018-02-22 04:10:54 -05:00
if sys.version_info[:3] < (3, 5):
raise SystemExit("You need Python 3.5+")
2016-04-29 01:12:21 -04:00
setup(
name="litedram",
2018-02-23 07:39:06 -05:00
version="0.2.dev",
2018-02-22 04:10:54 -05:00
description="Small footprint and configurable DRAM core",
long_description=open("README").read(),
author="Florent Kermarrec",
author_email="florent@enjoy-digital.fr",
url="http://enjoy-digital.fr",
2016-04-29 01:12:21 -04:00
download_url="https://github.com/enjoy-digital/litedram",
2017-01-17 09:17:21 -05:00
test_suite="test",
2016-04-29 01:12:21 -04:00
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",
2016-04-29 01:12:21 -04:00
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
2016-04-29 01:12:21 -04:00
],
2018-08-31 02:25:05 -04:00
packages=find_packages(exclude=("test*", "sim*", "doc*", "examples*")),
2016-04-29 01:12:21 -04:00
include_package_data=True,
)