Initial commit
This commit is contained in:
37
pyproject.toml
Normal file
37
pyproject.toml
Normal file
@@ -0,0 +1,37 @@
|
||||
[project]
|
||||
name = "planetarytime"
|
||||
version = "1.1.0"
|
||||
description = "Python library for representing and working with time on other bodies in the Solar System"
|
||||
authors = [
|
||||
{name = "Jan Doubravský", email = "jan.doubravsky@gmail.com"}
|
||||
]
|
||||
readme = "README.md"
|
||||
license = {text = "MIT"}
|
||||
requires-python = ">=3.14,<4.0"
|
||||
keywords = ["astronomy", "planetary", "time", "solar system", "datetime", "mars", "space"]
|
||||
classifiers = [
|
||||
"License :: OSI Approved :: MIT License",
|
||||
"Programming Language :: Python :: 3",
|
||||
"Programming Language :: Python :: 3.14",
|
||||
"Topic :: Scientific/Engineering :: Astronomy",
|
||||
"Intended Audience :: Developers",
|
||||
"Intended Audience :: Science/Research",
|
||||
"Typing :: Typed",
|
||||
]
|
||||
dependencies = [
|
||||
"loguru (>=0.7.3,<0.8.0)"
|
||||
]
|
||||
|
||||
[tool.poetry]
|
||||
packages = [{include = "planetarytime", from = "src"}]
|
||||
|
||||
[build-system]
|
||||
requires = ["poetry-core>=2.0.0,<3.0.0"]
|
||||
build-backend = "poetry.core.masonry.api"
|
||||
|
||||
[dependency-groups]
|
||||
dev = [
|
||||
"pytest (>=9.0.3,<10.0.0)",
|
||||
"mypy (>=1.20.1,<2.0.0)",
|
||||
"ruff (>=0.15.10,<0.16.0)"
|
||||
]
|
||||
Reference in New Issue
Block a user