-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (38 loc) · 1.26 KB
/
pyproject.toml
File metadata and controls
44 lines (38 loc) · 1.26 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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "crystalformer"
version = "0.6"
description = "CrystalFormer is a transformer-based autoregressive model specifically designed for space group-controlled generation of crystalline materials."
authors = [
{ name = "iopcompphys", email = "wanglei@iphy.ac.cn" }
]
license = { file = "LICENSE" }
readme = "README.md"
keywords = ["de novo generation", "crystal structure prediction", "transformer", "reinforcement learning"]
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux"
]
dependencies = [
"dm-haiku==0.0.15",
"optax==0.2.6",
"pyxtal==1.1.1"
]
[project.urls]
Homepage = "https://github.com/deepmodeling/CrystalFormer"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
[tool.setuptools.package-data]
crystalformer = ["data/*.csv"]
[project.scripts]
train_ppo = "crystalformer.cli.train_ppo:main"
train_dpo = "crystalformer.cli.train_dpo:main"
classifier = "crystalformer.cli.classifier:main"
cond_gen = "crystalformer.cli.cond_gen:main"
dataset = "crystalformer.cli.dataset:main"