-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (28 loc) · 891 Bytes
/
setup.py
File metadata and controls
35 lines (28 loc) · 891 Bytes
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
#!/usr/bin/env python
"""
| Copyright (C) 2012 Philip Axer
| TU Braunschweig, Germany
| All rights reserved
:Authors:
- Philip Axer
Description
-----------
Setup
"""
from setuptools import setup
setup(name='pycpa',
version='1.2',
description='pyCPA - a python implementation of compositional performance analysis',
author='Jonas Diemer, Philip Axer, Daniel Thiele, Johannes Schlatow',
author_email='{axer,diemer,thiele,schlatow}@ida.ing.tu-bs.de',
url='https://github.com/IDA-TUBS/pycpa',
license="MIT",
packages=['pycpa'],
install_requires=[ 'argparse'],
extras_require={'plot': 'matplotlib',
'trace': 'numpy',
'topology_plot' : 'pygraphviz',
'gantt_charts' : 'simpy',
'xls' : 'xlrd',
'doc' : 'sphinx'}
)