forked from MaximeCheramy/simso
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (30 loc) · 1.12 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
from setuptools import setup, find_packages
import simso
setup(
name='simso',
version=simso.__version__,
description='Simulation of Multiprocessor Real-Time Scheduling with Overheads',
author='Maxime Cheramy',
author_email='[email protected]',
url='http://projects.laas.fr/simso/',
download_url='https://github.com/MaximeCheramy/simso',
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'License :: OSI Approved',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering',
'Development Status :: 5 - Production/Stable'
],
packages=find_packages(),
install_requires=[
'SimPy==2.3.1',
'numpy>=1.6'
],
long_description="""\
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."""
)