-
Notifications
You must be signed in to change notification settings - Fork 54
/
setup.py
52 lines (48 loc) · 1.76 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
42
43
44
45
46
47
48
49
50
51
52
from setuptools import setup, find_packages
import codecs
with codecs.open("README.md", "r", "utf-8") as handle:
long_description = handle.read()
__version__ = None # appeases flake, assignment in exec() below
with open("./heat/core/version.py") as handle:
exec(handle.read())
setup(
name="heat",
packages=find_packages(exclude=("*tests*", "*benchmarks*")),
package_data={"heat.datasets": ["*.csv", "*.h5", "*.nc"]},
version=__version__,
description="A framework for high-performance data analytics and machine learning.",
long_description=long_description,
long_description_content_type="text/markdown",
author="Helmholtz Association",
author_email="[email protected]",
url="https://github.com/helmholtz-analytics/heat",
keywords=["data", "analytics", "tensors", "distributed", "gpu"],
python_requires=">=3.9",
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
],
install_requires=[
"mpi4py>=3.0.0",
"numpy>=1.22.0, <2",
"torch>=2.0.0, <2.5.2",
"scipy>=1.10.0",
"pillow>=6.0.0",
"torchvision>=0.15.2, <0.20.2",
],
extras_require={
"docutils": ["docutils>=0.16"],
"hdf5": ["h5py>=2.8.0"],
"netcdf": ["netCDF4>=1.5.6"],
"dev": ["pre-commit>=1.18.3"],
"examples": ["scikit-learn>=0.24.0", "matplotlib>=3.1.0"],
"cb": ["perun>=0.2.0"],
"pandas": ["pandas>=1.4"],
},
)