-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (50 loc) · 1.27 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
[project]
name = "cascade"
version = "0.0.1"
authors = [
{ name = "Logan Ward", email = "[email protected]" },
{ name = "Logan Ward", email = "[email protected]" },
]
description = 'Fast and reliable dynamic simulations by concurrently learning, auditing, and using surrogates'
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 = [
"ase>3.22",
]
[tool.setuptools.packages.find]
include = ['cascade*']
[project.optional-dependencies]
test = [
'nbstripout', # Used as a pre-commit hook
'flake8',
'pytest',
'pytest-forked',
'pytest-timeout',
'pytest-cov',
]
ani = [
'torchani',
'ignite',
'h5py'
]
chgnet = [
'chgnet',
]
mace = [
'mace-torch',
'ignite'
]