-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
162 lines (151 loc) · 4.45 KB
/
pyproject.toml
File metadata and controls
162 lines (151 loc) · 4.45 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
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
[build-system]
requires = ["setuptools>=64.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name="simmate"
version="0.19.0"
authors = [{name = "Jack D. Sundberg", email = "jacksundberg123@gmail.com"}]
description="Simmate is a full-stack framework for chemistry research."
readme = "README.md"
license = {text = "BSD 3-Clause License"}
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
]
requires-python=">=3.11, <3.12"
dependencies = [
# Core dependencies
"numpy>=2.0.0,<3.0.0",
"pandas>=2.0.0,<3.0.0",
"polars>=1.39.3,<2.0.0",
"django>=5.2.11,<6.0.0",
"typer>=0.24.1,<0.25.0",
"psycopg2-binary>=2.9.11,<3.0.0",
# Material/Crystal-based dependencies
"pymatgen>=2025.10.7,<2025.10.8",
"pymatgen-analysis-diffusion>=2025.11.15,<2025.11.16",
"matminer>=0.10.0,<0.11.0",
"ase>=3.22.1,<3.23.0",
# Molecule-based dependencies
"rdkit>=2025.9.5,<2025.9.6",
"ipython>=8.22.2,<10.0.0", # displaying rdkit images
# Extra (smaller) dependencies & utilities
"django-allauth>=0.63.3,<0.64.0",
"django-simple-history>=3.11.0,<3.12.0",
"pyyaml>=6.0.3,<7.0.0",
"plotly>=6.5.0,<7.0.0",
"markdown>=3.4.1,<4.0.0",
"requests>=2.32.5,<3.0.0",
"scikit-learn>=1.1.1,<2.0.0",
"cloudpickle>=3.1.2,<=4.0.0",
"rich>=14.3.3,<15.0.0",
"toml>=0.10.2,<0.11.0",
"schedule>=1.2.2,<2.0.0",
"xmltodict>=1.0.4,<2.0.0",
"dask>=2026.1.2,<2026.3.1",
"distributed>=2026.1.2,<2026.1.3",
"beautifulsoup4>=4.0.0,<5.0.0",
"cachetools>=7.0.1,<8.0.0",
"umap-learn>=0.5.5,<0.6.0",
]
[project.optional-dependencies]
dev = [
# Testing
"pytest>=9.0.0,<10.0.0",
"pytest-django>=4.12.0,<5.0.0",
"pytest-mock>=3.14.0,<4.0.0",
"pytest-xdist>=3.6.0,<4.0.0",
"coverage>=7.13.4,<8.0.0",
# Formatting & Linting
"black>=26.1.0,<27.0.0",
"isort>=8.0.0,<9.0.0",
"djlint>=1.36.4,<2.0.0",
# Docs
"mkdocs-material>=9.7.3,<10.0.0",
"mkdocstrings>=1.0.3,<2.0.0",
"mkdocstrings-python>=2.0.3,<3.0.0",
# IDE
"spyder-kernels==3.1.*",
]
# App-specific deps
baderkit = [
"baderkit>=0.9.0,<0.10.0",
]
chemspace = [
"boto3>=1.42.77,<2.0.0",
]
chatbot = [
"langchain>=1.2.10,<2.0.0",
"langchain-community>=0.4.1,<0.5.0",
"langchain-experimental>=0.4.1,<0.5.0",
"langchain-google-genai>=4.2.1,<5.0.0",
"langchain-openai>=1.1.10,<2.0.0",
"ddgs>=9.11.1,<10.0.0",
]
clease = [
"clease>=1.2.0,<2.0.0",
]
jarvis = [
"jarvis-tools>=2026.1.10",
]
lab_automation = [
"gpiozero>=2.0.1",
"opencv-python>=4.13.0.92",
]
materials_project = [
"mp-api>=0.46.0,<0.47.0",
]
price_catalog = [
"yfinance>=1.2.0,<2.0.0",
]
[project.urls]
homepage = "https://simmate.org/"
repository = "https://github.com/jacksund/simmate"
documentation = "https://jacksund.github.io/simmate/home/"
[project.scripts]
simmate = "simmate.command_line.base_command:simmate_app"
simmate-vasp = "simmate.apps.vasp.command_line.base_command:vasp_app"
simmate-qe = "simmate.apps.quantum_espresso.command_line.base_command:qe_app"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
simmate = [
"**/*.md",
"**/*.rst",
"**/*.json",
"**/*.csv",
"**/*.yaml",
"**/*.html",
"**/*.svg",
"**/*.toml",
"**/*.css",
"**/*.js",
]
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "simmate.config.django.settings_test"
markers = [
"blender: requires blender installed",
"vasp: requires vasp installed",
"pymatgen: runs a pymatgen-compatibility test",
"prefect_db: requires access to the prefect database",
"slow: test is slow (>30s) and unstable in in the CI",
]
addopts = "--no-migrations --durations=15 -m 'not blender and not vasp'"
filterwarnings = [
"ignore:cannot collect test class*:Warning",
"ignore:Issues encountered while parsing CIF*:Warning",
"ignore:No POTCAR file with matching TITEL fields*:Warning",
"ignore:The input structure does not match the expected standard primitive!*:Warning",
"ignore:Maximum iteration number is reached*:Warning",
# "ignore:*is an unconverged VASP run*:Warning", BUG: why won't this regex work?
]
[tool.coverage.run]
command_line = "-m pytest"
omit = ["*/test_*", "*/conftest.py", "*/*_test.py"]
[tool.isort]
profile = "black"