-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
63 lines (56 loc) · 1.57 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
[project]
name = "mofa"
version = "0.0.1"
authors = [
{ name = "Hyun Park", email = "hyunp2@illinois.edu" },
{ name = "Xiaoli Yan", email = "xyan11@uic.edu" },
{ name = "Eliu Huerta", email = "huerta@anl.gov" },
{ name = "Logan Ward", email = "lward@anl.gov" },
]
description = 'Generating useful MOFs on HPC'
readme = "README.md"
requires-python = ">=3.9"
license = { file = "LICENSE" }
keywords = ["HPC", "AI", "Workflows", "Quantum Chemistry", "Chemical Engineering"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: System :: Distributed Computing",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Chemistry",
"Programming Language :: Python :: 3",
]
dependencies = [
"colmena==0.6.*",
"more-itertools",
"parsl>=2023.04",
"ase>3.22",
"tqdm",
# ML-related dependencies
"pytorch-lightning",
"wandb",
"imageio",
# Performance tracking
"gpustat",
# Data management
"pymongo>=4"
]
[tool.setuptools.packages.find]
include = ['mofa*']
[project.urls]
repository = "https://github.com/globus-labs/mof-generation-at-scale"
[project.optional-dependencies]
test = [
'flake8',
'pytest',
'pytest-skip-slow',
'pytest-timeout',
'pytest-cov',
'mongomock'
]
[project.scripts]
monitor_utilization = "mofa.hpc.utilization:utilization_cli"