-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
23 lines (23 loc) · 965 Bytes
/
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
from setuptools import setup
setup(
name = 'littlemuscle',
packages = ['littlemuscle'],
version = 'develop',
description = 'A very simple multiscale coupler for prototyping and education',
author = 'Lourens Veen',
author_email = '[email protected]',
url = 'https://github.com/multiscale/littlemuscle',
download_url = 'https://github.com/multiscale/littlemuscle/archive/develop.tar.gz',
license = 'Apache License 2.0',
python_requires='>=3.5, <4',
install_requires=[
'overrides'
],
keywords = ['multiscale', 'coupling', 'MUSCLE'],
classifiers = [
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: Apache Software License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'],
)