-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (30 loc) · 952 Bytes
/
setup.py
File metadata and controls
31 lines (30 loc) · 952 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
from setuptools import setup, find_packages
setup(
name="binminpy",
version="0.1.0",
description="A package for binned and parallelised sampling and optimisation.",
author="Anders Kvellestad",
author_email="anders.kvellestad@fys.uio.no",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/anderkve/binminpy",
packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
],
python_requires='>=3.10',
install_requires=[
"numpy>=1.25.2",
"scipy>=1.9.3",
"h5py>=3.13.0",
"mpi4py>=4.0.3",
"matplotlib>=3.10.1"
],
extras_require={
'iminuit': ['iminuit>=2.23.0'],
'MPI': ['mpi4py>=3.1.1'],
},
license="GPLv3+",
)