-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (57 loc) · 1.96 KB
/
Copy pathpyproject.toml
File metadata and controls
64 lines (57 loc) · 1.96 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
59
60
61
62
63
64
# Packaging for installing MLatom directly from a source checkout / clone
# (`pip install .` or `pip install git+https://github.com/dralgroup/mlatom`).
#
# This targets the FLAT layout used by the repository and the public GitHub
# mirror, where the `mlatom/` package sits at the repo root. The separate
# `pypi-upload/setup.py` (src/ layout) still drives the PyPI release build; keep
# the metadata below (deps, entry points, package data) in sync with it.
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "mlatom"
dynamic = ["version"]
description = "A Package for AI-enhanced computational chemistry"
readme = "README.md"
requires-python = ">=3.9"
license = { text = "Apache-2.0" }
authors = [{ name = "Pavlo O. Dral", email = "admin@mlatom.com" }]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Fortran",
"Topic :: Scientific/Engineering :: Chemistry",
"Environment :: Console",
]
dependencies = [
"numpy<2",
"scipy",
"h5py",
"pyh5md",
"torch==2.1.2",
"torchani==2.2.3",
"setuptools<81",
"matplotlib",
"statsmodels",
"tqdm",
"joblib",
"requests",
"psutil",
"geometric",
]
[project.urls]
Homepage = "http://mlatom.com"
Documentation = "http://mlatom.com/docs"
Repository = "https://github.com/dralgroup/mlatom"
[project.scripts]
mlatom = "mlatom.shell_cmd:mlatom_cmd_run"
MLatomF = "mlatom.shell_cmd:MLatomF"
mlatom-gui = "mlatom.mlatom_gui:main"
mlatom_gui = "mlatom.mlatom_gui:main"
[tool.setuptools.dynamic]
version = { attr = "mlatom._version_static.version" }
[tool.setuptools.packages.find]
include = ["mlatom", "mlatom.*"]
[tool.setuptools.package-data]
"*" = ["MLatomF", "xtb", "README", "*.json", "*.so", "*.cpp", "*.pt", "*.dat", "*.txt", "*.pkl", "*.inp", "*.f90", "Makefile", "Makefile.intel", "*.saved", "*.sh", "*.jl"]