You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.3 KiB
53 lines
1.3 KiB
3 months ago
|
[build-system]
|
||
|
requires = ["hatchling"]
|
||
|
build-backend = "hatchling.build"
|
||
|
|
||
|
[project]
|
||
|
name = "grogu"
|
||
|
version = "0.0.1"
|
||
|
authors = [
|
||
|
{ name="Laszlo Oroszlany", email="laszlo.oroszlany@ttk.elte.hu" },
|
||
|
{ name="Daniel Pozsar", email="danielpozsar@student.elte.hu" },
|
||
|
]
|
||
|
description = "Relativistic magnetic interactions from non-orthogonal basis sets"
|
||
|
readme = "README.md"
|
||
|
kewords = [
|
||
|
"DFT",
|
||
|
"physics",
|
||
|
]
|
||
|
requires-python = ">=3.8"
|
||
|
dependencies = [
|
||
|
"numpy",
|
||
|
"scipy",
|
||
|
"sisl",
|
||
|
"mpi4py",
|
||
|
"argparse",
|
||
|
]
|
||
|
classifiers = [
|
||
|
"Development Status :: 3 - Alpha",
|
||
|
"Programming Language :: Python",
|
||
|
"Programming Language :: Python :: 3.9",
|
||
|
"Programming Language :: Python :: 3.10",
|
||
|
"Programming Language :: Python :: 3.11",
|
||
|
"Programming Language :: Python :: 3 :: Only",
|
||
|
"Topic :: Scientific/Engineering :: Physics",
|
||
|
"License :: OSI Approved :: MIT License",
|
||
|
"Operating System :: OS Independent",
|
||
|
]
|
||
|
|
||
|
[project.urls]
|
||
|
Homepage = "https://github.com/pypa/sampleproject"
|
||
|
Documentation = "https://readthedocs.org"
|
||
|
Repository = "https://github.com/me/spam.git"
|
||
|
Issues = "https://github.com/pypa/sampleproject/issues"
|
||
|
|
||
|
[tool.pytest.ini_options]
|
||
|
addopts = [
|
||
|
"--import-mode=importlib",
|
||
|
# "--cov",
|
||
|
"--doctest-modules",
|
||
|
]
|
||
|
pythonpath = [
|
||
|
"src/grogu/",
|
||
|
]
|