-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
executable file
·35 lines (30 loc) · 1.01 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/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+")
setup(
name="litejpeg",
version="0.1",
description="A small footprint and configurable JPEG Encoder and Decoder",
long_description=open("README").read(),
author="Florent Kermarrec",
author_email="florent@enjoy-digital.fr",
url="http://enjoy-digital.fr",
download_url="https://github.com/enjoy-digital/litejpeg",
license="BSD",
platforms=["Any"],
keywords="HDL ASIC FPGA hardware design",
classifiers=[
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
"Environment :: Console",
"Development Status :: Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
],
packages=find_packages(),
include_package_data=True,
)