-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·30 lines (28 loc) · 918 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
24
25
26
27
28
29
30
#! /usr/bin/env python3
from setuptools import setup
setup(
name = 'hdintegrator',
version = '1.0.1',
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Natural Language :: English',
'Operating System :: Unix',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Mathematics'
],
python_requires = '>=3',
install_requires = ['networkx', 'mpi4py', 'scipy'],
scripts = [
'hdintegrator.py',
'submodules/ndgrid/source/cell.py',
'submodules/ndgrid/source/ndgrid.py',
'integrands/N-sphere.py'
],
author = 'Ilja Honkonen',
author_email = '[email protected]',
url = 'https://github.com/iljah/hdintegrator',
description = 'High-Dimensional Integrator, see github.com/iljah/hdintegrator for full version'
)