-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
56 lines (52 loc) · 1.55 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[tool.poetry]
name = "azely"
version = "0.7.0"
description = "Computation and plotting of azimuth and elevation for astronomical objects"
authors = ["Akio Taniguchi <taniguchi@a.phys.nagoya-u.ac.jp>"]
keywords = [ "astronomy", "azimuth", "elevation", "ephemeris", "sidereal-time" ]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/astropenguin/azely/"
documentation = "https://astropenguin.github.io/azely/"
[tool.poetry.dependencies]
python = ">=3.7.1, <3.11"
astropy = [
{ version = ">=4.3, <5.0", python = ">=3.7.1, <3.8" },
{ version = "^5.0", python = ">=3.8, <3.11" },
]
numpy = [
{ version = ">=1.20, <1.22", python = ">=3.7.1, <3.8" },
{ version = "^1.20", python = ">=3.8, <3.11" },
]
pandas = [
{ version = ">=1.2, <1.4", python = ">=3.7.1, <3.8" },
{ version = "^1.2", python = ">=3.8, <3.11" },
]
pandas-stubs = [
{ version = ">=1.2, <1.4", python = ">=3.7.1, <3.8" },
{ version = "^1.2", python = ">=3.8, <3.11" },
]
python-dateutil = "^2.8"
pytz = "^2022.5"
requests = "^2.23"
timezonefinder = [
{ version = ">=6.0, <6.0.2", python = ">=3.7.1, <3.8" },
{ version = "^6.0", python = ">=3.8, <3.11" },
]
toml = "^0.10"
[tool.poetry.dev-dependencies]
black = "^22.10"
ipython = [
{ version = "<8.0", python = ">=3.7.1, <3.8" },
{ version = "^8.0", python = ">=3.8, <3.11" },
]
matplotlib = "^3.2"
myst-parser = "^0.18"
pydata-sphinx-theme = "^0.9"
pytest = "^7.2"
sphinx = "^5.3"
[tool.pyright]
typeCheckingMode = "basic"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"