1
0
Fork 0
mirror of https://github.com/cosmo-sims/cosmICweb-music.git synced 2024-09-19 16:53:43 +02:00
cosmICweb-music/pyproject.toml

37 lines
1 KiB
TOML
Raw Normal View History

2024-04-14 23:22:33 +02:00
[tool.poetry]
name = "cosmicweb-music"
version = "0.1.0"
description = "Script to download initial conditions for zoom-in cosmological simulations from the cosmICweb service."
2024-04-14 23:22:33 +02:00
authors = ["Michael Buehlmann <buehlmann.michi@gmail.com>"]
license = "MIT"
2024-04-14 23:22:33 +02:00
readme = "README.md"
homepage = "https://github.com/michaelbuehlmann/cosmicweb-music"
repository = "https://github.com/michaelbuehlmann/cosmicweb-music"
documentation = "https://github.com/michaelbuehlmann/cosmicweb-music"
include = ["LICENSE"]
keywords = ["scientific computing"]
classifiers = [
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering",
"Intended Audience :: Science/Research",
]
2024-04-14 23:22:33 +02:00
[tool.poetry.scripts]
cosmicweb-music = "cosmicweb_music.cosmICweb:cli"
[tool.poetry.dependencies]
python = "^3.9"
click = "^8.1.7"
requests = "^2.31.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 88
target-version = ["py38"]
include = '\.pyi?$'
exclude = '\.git|\.venv|build|_build|dist'