[build-system] requires = ["hatchling"] build-backend = "hatchling.build" [project] name = "grogu_magn" version = "0.0.3" authors = [ { name="Daniel Pozsar", email="danielpozsar@student.elte.hu" }, { name="Laszlo Oroszlany", email="laszlo.oroszlany@ttk.elte.hu" }, ] description = "Relativistic magnetic interactions from non-orthogonal basis sets" readme = "README.md" kewords = [ "DFT", "physics", "grogu", "magnetic interactions", ] requires-python = ">=3.9" dependencies = [ "numpy", "scipy", "sisl", "netcdf4", "openmpi", "mpi4py", ] classifiers = [ "Development Status :: 3 - Alpha", "Programming Language :: Python", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3 :: Only", "Topic :: Scientific/Engineering :: Physics", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", ] [project.scripts] grogu = "grogu:main" [project.urls] Homepage = "https://gitea.vo.elte.hu/et209d/grogu" Documentation = "https://gitea.vo.elte.hu/et209d/grogu" Repository = "https://gitea.vo.elte.hu/et209d/grogu" Issues = "https://gitea.vo.elte.hu/et209d/grogu" [tool.pytest.ini_options] pythonpath = [ "src/grogu_magn/" ] addopts = [ "--import-mode=importlib", # "--cov", "--doctest-modules", ]