-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
34 lines (30 loc) · 973 Bytes
/
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
[build-system]
requires = ["setuptools", "setuptools_scm[toml]"]
build-backend = "setuptools.build_meta"
[project]
name = "mpgrep"
dynamic = ["version"]
description = "A tool for retrieving structure information (.cif) files from the Materials Project database."
authors = [
{ name = "Leopold Seidler", email = "[email protected]"}
]
maintainers = [
{ name = "Leopold Seidler", email = "[email protected]"}
]
readme = "README.md"
license = { file = "LICENSE" }
keywords = ["chemistry", "materials science", "materials", "materials project", "MP", "structure search"]
classifiers = [
"Programming Language :: Python :: 3",
"LIcense :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
dependencies = ["mp-api", "pymatgen"]
requires-python = ">=3.10"
[project.scripts]
mpgrep = "mpgrep:entry_point"
[tool.setuptools_scm]
version_file = "src/mpgrep/__version__.py"
[tool.pytest.ini_options]
testpaths = ["test"]
pythonpath = ["src"]