Skip to content

Commit

Permalink
re-work pysysc-scc package
Browse files Browse the repository at this point in the history
  • Loading branch information
staskau committed Sep 8, 2021
1 parent 7ecf58d commit ddc4bd5
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 25 deletions.
25 changes: 0 additions & 25 deletions contrib/pysysc/setup.cfg

This file was deleted.

31 changes: 31 additions & 0 deletions contrib/pysysc/setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
import setuptools

with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()

setuptools.setup(
name="PySysC-SCC",
version="0.0.1",
author="MINRES Technologies GmbH",
author_email="info@minres.com",
description="SCC python modules for intergration in PySysC",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Minres/SystemC-Components.git",
project_urls={
"Bug Tracker": "https://github.com/Minres/SystemC-Components.git/issues",
},
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3.6",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
],
package_dir={"": "src"},
packages=setuptools.find_namespace_packages(where="src"),
python_requires=">=3.6",
install_requires=[
'PySysC'
],
)
Empty file removed contrib/pysysc/src/__init__.py
Empty file.
File renamed without changes.

0 comments on commit ddc4bd5

Please sign in to comment.