-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
104 lines (82 loc) · 1.98 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
[build-system]
requires = ["setuptools>=64", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
local_scheme="no-local-version"
version_file = "matgraphdb/_version.py"
[project]
name = "matgraphdb"
authors = [
{name = "Logan Lang", email = "[email protected]"}
]
description = "Welcome to MatGraphDB, a powerful Python package designed to interface with primary and graph databases for advanced material analysis."
readme = {file = "README.md", content-type = "text/markdown"} # Ensure this matches the file used
requires-python = ">=3.8"
keywords = ["materials", "science", "graph", "database", "python"]
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3",
]
dynamic = ["version"]
dependencies = [
"python-dotenv",
"numpy",
"pandas",
"scipy",
"matplotlib",
"seaborn",
"pyyaml",
"jupyterlab",
"nglview",
"ipywidgets",
"pylint",
"autopep8",
"pymatgen",
"parquetdb",
"variconfig",
"gdown",
"mlflow"
]
[project.optional-dependencies]
torch = [
"torch",
"torchvision",
"torchaudio",
"pyg_lib ; platform_system == 'Linux'" ,
"torch_geometric",
"torch_scatter",
"torch_sparse",
"torch_cluster",
"torch_spline_conv"
]
graph-tool = [
"graph-tool; platform_system == 'Linux'"
]
llm = [
"openai",
"tiktoken",
]
neo4j = [
"neo4j",
]
materials=[
"ase",
"mendeleev",
"matminer",
"coxeter",
"crystals",
]
dev = ["sphinx",
"sphinx_rtd_theme"]
[project.urls]
Repository = "https://github.com/romerogroup/MatGraphDB"
Issues = "https://github.com/romerogroup/MatGraphDB/issues"
Changelog = "https://github.com/romerogroup/MatGraphDB/CHANGELOG.md"
[tool.setuptools.packages.find]
where = ["."]
include = ["matgraphdb*"]
exclude = ["matgraphdb.tests*"]
[tool.setuptools.package-data]
matgraphdb = ["**/*.json", "**/*.csv", "**/*.yml", "**/*.parquet"]
# include = ["matgraphdb"]
# exclude = ["matgraphdb.tests"]