Skip to content

Commit

Permalink
setup.py: simplify, switch to Python3.6+ (using python_requires), rem…
Browse files Browse the repository at this point in the history
…ove version.

- Deprecate Python 3.5, switch to Python 3.6+.
- Remove which was not used or updated. We'll see to get this back when working on releases.
  • Loading branch information
enjoy-digital committed Apr 7, 2020
1 parent 3dd6185 commit fde0c62
Showing 1 changed file with 3 additions and 21 deletions.
24 changes: 3 additions & 21 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,37 +1,19 @@
#!/usr/bin/env python3

import sys
from setuptools import setup
from setuptools import find_packages


if sys.version_info[:3] < (3, 5):
raise SystemExit("You need Python 3.5+")


setup(
name="litepcie",
version="0.2.dev",
description="small footprint and configurable PCIe core",
long_description=open("README").read(),
description="Small footprint and configurable PCIe core",
author="Florent Kermarrec",
author_email="[email protected]",
url="http://enjoy-digital.fr",
download_url="https://github.com/enjoy-digital/litepcie",
test_suite="test",
install_requires=['pyyaml'],
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",
],
python_requires="~=3.6",
install_requires=["pyyaml"],
packages=find_packages(exclude=("test*", "sim*", "doc*", "examples*")),
include_package_data=True,
entry_points={
Expand Down

0 comments on commit fde0c62

Please sign in to comment.