-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
50 lines (47 loc) · 1.71 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
47
48
49
50
from setuptools import setup, find_packages, find_namespace_packages
import codecs
import os
from cocotbext.waves.version import __version__
DESCRIPTION = "CocotbExt Wavedrom diagram generator"
LONG_DESCRIPTION = "Wavedrom diagram generator"
here = os.path.abspath(os.path.dirname(__file__))
with codecs.open(os.path.join(here, "README.md"), encoding="utf-8") as fh:
long_description = "\n" + fh.read()
# Setting up
setup(
name="cocotbext-waves",
packages=find_namespace_packages(include=["cocotbext.*"]),
version=__version__,
author="aignacio (Anderson Ignacio)",
author_email="<anderson@aignacio.com>",
license="MIT",
description=DESCRIPTION,
long_description_content_type="text/markdown",
long_description=long_description,
url="https://github.com/aignacio/cocotbext-waves",
project_urls={
"Bug Tracker": "https://github.com/aignacio/cocotbext-waves/issues",
"Source Code": "https://github.com/aignacio/cocotbext-waves",
},
include_package_data=False,
python_requires=">=3.6",
install_requires=["cocotb>=1.8.0", "wavedrom"],
extras_require={
"test": [
"pytest",
"cocotbext-ahb",
],
},
keywords=["soc", "vip", "hdl", "verilog", "systemverilog", "wavedrom"],
classifiers=[
"Development Status :: 3 - Alpha",
"Framework :: cocotb",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
],
)