2018-12-31 15:23:37 +01:00
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
|
|
|
|
def readme():
|
|
|
|
with open('README.md') as f:
|
|
|
|
return f.read()
|
|
|
|
|
|
|
|
|
2019-01-01 14:48:37 +01:00
|
|
|
setup(name='PySysC',
|
2018-12-31 15:23:37 +01:00
|
|
|
version='0.1',
|
|
|
|
description='Python SystemC binding',
|
|
|
|
long_description=readme(),
|
|
|
|
classifiers=[
|
|
|
|
'Development Status :: 3 - Alpha',
|
|
|
|
'License :: OSI Approved :: Apache 2.0 License',
|
|
|
|
'Programming Language :: Python :: 3.6',
|
|
|
|
'Topic :: Engineering :: Simulation'
|
|
|
|
],
|
|
|
|
keywords='SystemC simulation',
|
|
|
|
url='https://git.minres.com/SystemC/PySysC',
|
|
|
|
author='MINRES Technologies GmbH',
|
|
|
|
author_email='info@minres.com',
|
|
|
|
license='Apache-2.0',
|
|
|
|
packages=['pysysc'],
|
|
|
|
install_requires=[
|
|
|
|
'cppyy',
|
|
|
|
'conan'
|
|
|
|
],
|
|
|
|
include_package_data=True,
|
|
|
|
test_suite='nose.collector',
|
|
|
|
tests_require=['nose'],
|
|
|
|
)
|