-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (40 loc) · 1.47 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
36
37
38
39
40
41
42
43
44
45
46
#!/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+")
requirements = [] # "migen" is an optional requirement
setup(
name="vcdsim",
version="0.0.0",
long_description_content_type='text/markdown',
description="Using Value Chande Dump files as stimulus for hardware simulation",
long_description=open("README.md").read(),
author="Charles-Henri Mousset",
author_email="[email protected]",
download_url="https://github.com/chmousset/python-vcdsim",
packages=find_packages(),
install_requires=requirements,
test_suite="vcdsim.test",
license="BSD",
platforms=["Any"],
keywords=["HDL", "ASIC", "FPGA", "hardware design"],
classifiers=[
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
"Environment :: Console",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7"
],
entry_points={
'console_scripts': ['vcdconvert=vcdsim.convert:main'],
},
)