Skip to content

Commit

Permalink
update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
themperek committed Jan 19, 2024
1 parent f305a71 commit d449eb7
Showing 1 changed file with 18 additions and 9 deletions.
27 changes: 18 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,19 +1,28 @@
from setuptools import setup
from setuptools import setup, find_packages
from pathlib import Path

this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()

setup(
name="cocotb-vivdo",
packages=["cocotb_vivado", "cocotb_vivado.stub"],
name="cocotb-vivado",
version="0.0.1",
install_requires=["cocotb>=1.7,<=1.8"],
packages=find_packages(where="./src"),
package_dir={"": "src"},
author="Tomasz Hemperek",
author_email="themperek@gmail.com",
description="Limited cocotb/Python interface for Xilinx Vivado Simulator",
long_description="""
Enables running cocotb/Python unit tests with Xilinx Vivado simulator (xsim)
""",
long_description=long_description,
long_description_content_type="text/markdown",
license="Apache 2.0",
keywords=["SystemVerilog", "Verilog", "RTL", "cocotb", "Python", "Vivado", "Xilinx", "xsim", "xsi"],
url="https://github.com/themperek/cocotb-xsim",
setup_requires=["setuptools_scm"],
install_requires=["cocotb>=1.7,<=1.8"],
version="0.0.1",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
"Framework :: cocotb",
],
platforms="any",
)

0 comments on commit d449eb7

Please sign in to comment.