-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (33 loc) · 858 Bytes
/
Copy pathpyproject.toml
File metadata and controls
37 lines (33 loc) · 858 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
32
33
34
35
36
37
[project]
name = "hxrate"
version = "1.0.1"
authors = [
{ name="SD", email="suggie@northwestern.edu" },
]
description = "HX Rate Fitting"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"matplotlib == 3.3.4",
"numpy == 1.26.1",
"numpyro == 0.13.2",
"pandas == 1.2.5",
"scikit-learn == 0.24.2",
"scipy == 1.11.3",
"pyyaml == 6.0",
"biopython == 1.79",
"molmass == 2021.6.18",
"jax == 0.4.19",
"jaxlib == 0.4.19",
"psutil == 5.8.0",
]
[build-system]
# These are the assumed default build requirements from pip:
# https://pip.pypa.io/en/stable/reference/pip/#pep-517-and-518-support
requires = ["setuptools>=43.0.0", "wheel"]
build-backend = "setuptools.build_meta"