-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (28 loc) · 791 Bytes
/
setup.py
File metadata and controls
30 lines (28 loc) · 791 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
"""Setup of KAMI."""
from setuptools import setup
setup(name='kami',
version='1.2',
description='Knowledge Aggregator and Model Instantiator',
author='Russ Harmer, Sebastien Legare, Eugenia Oshurko',
license='MIT License',
packages=['kami',
'kami.exporters',
'kami.importers',
'kami.aggregation',
'kami.resources',
'kami.utils',
'kami.data_structures',
'anatomizer',
'kamiql'],
package_data={
'anatomizer': ['resources/*'],
},
include_package_data=True,
zip_safe=False,
install_requires=[
"indra",
"flask",
"flex",
"lxml",
"jpype1"
])