forked from precice/micro-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (30 loc) · 1.19 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
import os
from setuptools import setup, find_packages
# from https://stackoverflow.com/a/9079062
import sys
if sys.version_info[0] < 3:
raise Exception("micromanager only supports Python3. Did you run $python setup.py <option>.? "
"Try running $python3 setup.py <option>.")
this_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='micro-manager-precice',
version='v0.3.0',
description='micro-manager-precice is a package which facilitates two-scale macro-micro coupled simulations using preCICE',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://precice.org/tooling-micro-manager-overview.html',
entry_points={
'console_scripts': ['micro_manager=micro_manager.micro_manager:main']},
author='Ishaan Desai',
author_email='[email protected]',
license='LGPL-3.0',
packages=find_packages(
exclude=['examples']),
install_requires=[
'pyprecice>=3.0.0.0dev2',
'numpy>=1.13.3',
'mpi4py'],
test_suite='tests',
zip_safe=False)