forked from pymgrit/pymgrit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (35 loc) · 1.04 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
34
35
36
37
38
39
40
41
from setuptools import setup, find_packages
install_requires = [
'numpy>=1.17.0',
'scipy>=1.4.1',
'mpi4py>=3.0',
'matplotlib>=3.1.3'
]
extras_requires = {
'docs': [
'sphinx'
],
'tests': [
'tox',
]
}
def long_description():
with open('README.rst') as f:
return f.read()
setup(name='pymgrit',
version='1.0.4',
description='Python implementation of the MGRIT algorithm',
long_description=long_description(),
long_description_content_type="text/x-rst",
url='https://github.com/pymgrit/pymgrit',
author='Jens Hahne <[email protected]>, Stephanie Friedhoff <[email protected]>',
author_email='[email protected]',
license='MIT',
packages=find_packages(where='src', exclude=['doc']),
install_requires=install_requires,
extras_require=extras_requires,
python_requires=">=3.6",
include_package_data=True,
package_dir={'': 'src'},
test_suite='pytest',
zip_safe=False)