update setup.py

This commit is contained in:
Florent Kermarrec 2015-11-14 17:28:40 +01:00
parent c1d7f2d427
commit fda5ea0522
3 changed files with 13 additions and 17 deletions

View File

View File

@ -1,2 +0,0 @@
0.9.0

View File

@ -1,37 +1,35 @@
#!/usr/bin/env python3 #!/usr/bin/env python3
import sys, os import sys
from setuptools import setup from setuptools import setup
from setuptools import find_packages 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[:3] < (3, 3):
if sys.version_info < required_version: raise SystemExit("You need Python 3.3+")
raise SystemExit("LiteEth requires python {0} or greater".format(
".".join(map(str, required_version))))
setup( setup(
name="liteeth", name="liteeth",
version="unknown", version="1.0",
description="small footprint and configurable Ethernet core", description="small footprint and configurable Ethernet core",
long_description=README, long_description=open("README").read(),
author="Florent Kermarrec", author="Florent Kermarrec",
author_email="florent@enjoy-digital.fr", author_email="florent@enjoy-digital.fr",
url="http://enjoy-digital.fr", url="http://enjoy-digital.fr",
download_url="https://github.com/enjoy-digital/liteeth", download_url="https://github.com/enjoy-digital/liteeth",
packages=find_packages(here), license="BSD",
license="GPL", platforms=["Any"],
platforms=["Any"], keywords="HDL ASIC FPGA hardware design",
keywords="HDL ASIC FPGA hardware design",
classifiers=[ classifiers=[
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)", "Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
"Environment :: Console", "Environment :: Console",
"Development Status :: Alpha", "Development Status :: Alpha",
"Intended Audience :: Developers", "Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License (GPL)", "License :: OSI Approved :: BSD License",
"Operating System :: OS Independent", "Operating System :: OS Independent",
"Programming Language :: Python", "Programming Language :: Python",
], ],
packages=find_packages(),
include_package_data=True,
) )