-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
35 lines (34 loc) · 1.22 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
from setuptools import setup, find_packages
import simsogui
setup(
name='simsogui',
version=simsogui.__version__,
description='Graphical User Interface for SimSo',
author='Maxime Cheramy',
author_email='[email protected]',
url='http://projects.laas.fr/simso/',
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'License :: OSI Approved',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering',
'Development Status :: 5 - Production/Stable',
'Environment :: X11 Applications :: Qt'
],
packages=find_packages(),
install_requires=[
'simso>=0.8',
'PyQt5>=5.11.3'
],
entry_points={
'gui_scripts': ['simso = simsogui:run_gui']
},
long_description="""\
This package provides a Graphical User Interface for SimSo. SimSo is a
scheduling simulator for real-time multiprocessor architectures that takes
into account some scheduling overheads (scheduling decisions, context-switches)
and the impact of caches through statistical models. Based on a Discrete-Event
Simulator, it allows quick simulations and a fast prototyping of scheduling
policies using Python."""
)