forked from FitSNAP/FitSNAP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (46 loc) · 1.04 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
[build-system]
requires = [
"setuptools>=42",
]
build-backend = 'setuptools.build_meta'
[project]
name = "fitsnap3"
version = "3.1.1.0"
description = "Molecular Machine Learning Interface"
license = {file = "LICENSE"}
readme = "README.md"
requires-python = ">=3.9.0"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
authors = [
{ name = "Drew Rohskopf", email = "[email protected]" },
]
maintainers = [
{ name = "Drew Rohskopf", email = "[email protected]" },
]
dependencies = [
"numpy",
"scipy",
"scikit-learn",
"psutil",
"pandas",
"tabulate",
"mpi4py",
"torch",
"sympy",
"pyyaml",
]
[project.urls]
repository = "https://github.com/FitSNAP/FitSNAP"
documentation = "https://fitsnap.github.io/"
#[tool.setuptools]
#packages = [
# "fitsnap3",
# "fitsnap3lib",
#]
[tool.setuptools.packages.find]
include = ["fitsnap3*", "fitsnap3lib*"] # alternatively: `exclude = ["additional*"]`
namespaces = false