Upload pyproject.toml with huggingface_hub
Browse files- pyproject.toml +37 -0
pyproject.toml
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[build-system]
|
| 2 |
+
requires = ["setuptools>=68.0", "wheel"]
|
| 3 |
+
build-backend = "setuptools.backends._legacy:_Backend"
|
| 4 |
+
|
| 5 |
+
[project]
|
| 6 |
+
name = "scandium-dataset"
|
| 7 |
+
version = "0.1.0-rc.1"
|
| 8 |
+
description = "Curated computational materials dataset for solid-state battery discovery"
|
| 9 |
+
readme = "README.md"
|
| 10 |
+
requires-python = ">=3.10"
|
| 11 |
+
license = {text = "Multiple (see LICENSE_BREAKDOWN.md)"}
|
| 12 |
+
authors = [{name = "Scandium Labs"}]
|
| 13 |
+
keywords = ["materials-science", "solid-state-battery", "computational-materials", "dataset"]
|
| 14 |
+
|
| 15 |
+
dependencies = [
|
| 16 |
+
"numpy>=1.24",
|
| 17 |
+
"scipy>=1.10",
|
| 18 |
+
"pymatgen>=2024.0",
|
| 19 |
+
"ase>=3.22",
|
| 20 |
+
"spglib>=2.0",
|
| 21 |
+
]
|
| 22 |
+
|
| 23 |
+
[project.optional-dependencies]
|
| 24 |
+
benchmark = ["scikit-learn>=1.3", "matplotlib>=3.7"]
|
| 25 |
+
dev = ["pytest>=7", "pytest-cov>=4"]
|
| 26 |
+
docs = ["mkdocs>=1.5"]
|
| 27 |
+
|
| 28 |
+
[project.urls]
|
| 29 |
+
Homepage = "https://github.com/ScandiumLabs-in/Scandium-Dataset"
|
| 30 |
+
Repository = "https://github.com/ScandiumLabs-in/Scandium-Dataset"
|
| 31 |
+
|
| 32 |
+
[tool.pytest.ini_options]
|
| 33 |
+
testpaths = ["tests"]
|
| 34 |
+
python_files = ["test_*.py"]
|
| 35 |
+
|
| 36 |
+
[tool.coverage.run]
|
| 37 |
+
source = ["api", "scripts"]
|