-
Notifications
You must be signed in to change notification settings - Fork 72
/
setup.py
42 lines (37 loc) · 1.16 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
from setuptools import setup
from setuptools import find_packages
import os
import cocotb_test
version = cocotb_test.__version__
def read_file(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="cocotb-test",
version=version,
description="",
url="",
license="BSD",
long_description=read_file("README.md"),
long_description_content_type="text/markdown",
author="Tomasz Hemperek",
packages=find_packages(),
include_package_data = True,
python_requires=">=3.7",
install_requires=["cocotb>=1.5", "pytest", "find_libpython"],
entry_points={
"console_scripts": [
"cocotb-test=cocotb_test.cli:config",
"cocotb-run=cocotb_test.cli:run",
"cocotb-clean=cocotb_test.cli:clean",
],
"pytest11": ["pytest-cocotb = cocotb_test.plugin"],
},
platforms="any",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
"Framework :: cocotb",
],
)