-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
65 lines (60 loc) · 1.51 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
[project]
name = "xppbe"
version = "1.0.0"
description = "Physics Informed Neural Network for Poisson-Boltzmann Equation"
authors = [{name = "martinachondo", email = "[email protected]"}]
readme = "README.md"
license = {file = "LICENSE"}
keywords = [
"Deep learning",
"Neural networks",
"Physics-informed neural networks",
"Scientific machine learning",
"Poisson-Boltzmann equation",
"Macromolecules in polarizable media"
]
requires-python = ">=3.9,<3.10"
dependencies = [
"numpy==1.23.5",
"tensorflow==2.10.0",
"scipy==1.13.1",
"numba==0.59.1",
"trimesh==3.23.5",
"pygamer==2.0.7",
"meshio==5.3.4",
"gmsh==4.9.5",
"rtree==1.0.1",
"bempp-cl==0.3.0",
"matplotlib==3.5.1",
"plotly==5.7.0",
"kaleido==0.2.1",
"pandas==2.2.0",
"tqdm==4.64.1",
"ipykernel==6.22.0",
"pyyaml==6.0.1",
"yq==3.4.3",
"pdb2pqr==3.6.2"
]
[project.optional-dependencies]
pbj = [
"pbj@git+https://github.com/bem4solvation/pbj"
]
apbs = [
"apbs@git+https://github.com/Electrostatics/apbs",
"griddata==0.1.0"
]
model-visualization = [
"pydotplus==2.0.2"
]
data-processing = [
"xlsxwriter==3.1.9"
]
[tool.setuptools.packages.find]
include = ["xppbe*"]
[tool.setuptools.package-data]
xppbe = ["Scripts","*yaml","Mesh/Mesh_softwares/**/*","Molecules/**/*.pqr","Model/**/*.in","Post/*.ipynb"]
[project.urls]
repository = "https://github.com/MartinAchondo/XPPBE"
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"