-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (30 loc) · 911 Bytes
/
setup.py
File metadata and controls
41 lines (30 loc) · 911 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
36
37
38
39
40
# -*- coding: utf-8 -*-
"""
Åshild Telle / Simula Research Laboratory / 2020
"""
from __future__ import print_function
import os
import sys
import platform
import glob
from setuptools import setup, find_packages
if sys.version_info < (3, 5):
print("Python 3.5 or higher required, please upgrade.")
sys.exit(1)
def run_install():
setup(
name="emimechanicalmodel",
description="Software for mechanical simulation of cardiac cells using the EMI model.",
version="0.1",
author="Åshild Telle",
license="MIT",
author_email="aashild@simula.no",
platforms=["Linux"],
packages=find_packages("."),
package_data={"emimechanicalmodel": ["active.npy"]},
package_dir={"emimechanicalmodel" : "emimechanicalmodel"},
install_requires = [],
zip_safe=False,
)
if __name__ == "__main__":
run_install()