-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpyproject.toml
69 lines (62 loc) · 1.9 KB
/
pyproject.toml
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[build-system]
requires = [ "setuptools" ]
build-backend = 'setuptools.build_meta'
[project]
name = "simulai-toolkit"
version = "0.99.28"
description = "A Python package with data-driven pipelines for physics-informed machine learning"
license = { "text" = "Apache License, Version 2.0" }
readme = { "file" = "DESCRIPTION.md", "content-type" = "text/markdown" }
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules"
]
dependencies = [
"numpy<=2.0",
"torch<=2.4.0",
"numba<=0.60.0",
"scipy<=1.14.1",
"sympy<=1.13.1",
"scikit-learn<=1.5.1",
"psutil",
"h5py",
"dask",
"six",
"numexpr",
"minio",
"optuna",
"urllib3<1.27"
]
requires-python = ">=3.8"
[project.optional-dependencies]
dev = ["yapf","bumpver", "flake8", "coverage", "pytest"]
mpi = ["mpi4py"]
[project.urls]
Source = "https://github.com/IBM/simulai"
Tracker = "https://github.com/IBM/simulai/issues"
Documentation = "https://simulai-toolkit.readthedocs.io"
[tool.setuptools.packages.find]
include = ["simulai", "simulai.*"]
namespaces = false
[tool.bumpver]
current_version = "0.99.28"
version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]"
commit_message = "Bump version {old_version} -> {new_version}"
commit = true
tag = true
push = false
[tool.bumpver.file_patterns]
"pyproject.toml" = [
'current_version = "{version}"',
'version = "{version}"'
]