-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
39 lines (35 loc) · 1.09 KB
/
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
35
36
37
38
39
[tool.poetry]
name = "kosmorrolib"
version = "1.0.11"
authors = ["Jérôme Deuchnord <[email protected]>"]
homepage = "https://kosmorro.space/lib"
repository = "https://github.com/Kosmorro/lib"
documentation = "https://kosmorro.space/lib/doc"
keywords = ["kosmorro", "astronomy", "ephemerides", "ephemeris"]
license = "AGPL-3.0-or-later"
description = "A library to computes the ephemerides."
readme = "README.md"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Software Development :: Libraries :: Python Modules",
"Intended Audience :: Developers",
"Intended Audience :: Education",
]
[tool.poetry.dependencies]
python = "^3.8"
skyfield = "^1.49"
numpy = [
{ version = "<1.25", python = "3.8.*" },
{ version = "^2.0", python = ">=3.9,<3.13" },
]
skyfield-data = "*"
python-dateutil = "^2.8"
[tool.poetry.group.dev.dependencies]
black = ">23.1,<25.0"
parameterized = "^0.9.0"
coverage = "^6.1.2"
coveralls = "^3.3.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"