-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (54 loc) · 1.37 KB
/
pyproject.toml
File metadata and controls
58 lines (54 loc) · 1.37 KB
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
[project]
name = "examol"
version = "0.1.0"
authors = [
{ name = "Logan Ward", email = "lward@anl.gov" },
]
description = 'Designing molecules as fast as possible'
readme = "README.md"
requires-python = ">=3.10"
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.5.*",
"ase>=3.22",
"rdkit>=2022.9",
"networkx>=2.8",
"parsl>=2022.12",
"more_itertools==9.*",
"pydantic<2",
"tabulate>=0.9",
"modAL-python==0.4.*",
"tqdm"
]
[tool.setuptools.packages.find]
include = ['examol*']
[project.urls]
repository = "https://github.com/exalearn/examol"
[project.optional-dependencies]
test = [
'flake8',
'pytest',
'pytest-mock',
'pytest-forked',
'pytest-timeout',
'pytest-cov',
'pytest-skip-slow'
]
botorch = [
'botorch==0.8.*'
]
[project.scripts]
examol = "examol.cli:main"