-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathsetup.py
28 lines (26 loc) · 847 Bytes
/
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
#!/usr/bin/env python3
import sys
from setuptools import setup
from setuptools import find_packages
setup(
name="valentyusb",
version="0.3.4dev",
description="FPGA USB stack written in LiteX",
long_description=open("README.md").read(),
author="Sean Cross",
author_email="sean@xobs.io",
url="https://github.com/im-tomu/valentyusb",
download_url="https://github.com/im-tomu/valentyusb",
license="BSD",
platforms=["Any"],
keywords=["HDL", "FPGA", "USB"],
classifiers=[
"Development Status :: Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
],
packages=find_packages(exclude=("test-suite*", "sim*", "docs*")),
install_requires=["litex"],
)