-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
85 lines (79 loc) · 2.16 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
[tool.flit.scripts]
planet_crs_registry = "planet_crs_registry.__main__:run"
[tool.black]
line-length = 79
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.poetry]
name = "planet_crs_registry"
readme = "README.rst"
description = "The coordinates reference system registry for solar bodies"
authors = ["Jean-Christophe Malapert <[email protected]>", ]
license = "GNU Lesser General Public License v3"
packages = [{include = "planet_crs_registry"}]
homepage = "https://github.com/pole-surfaces-planetaires/planet_crs_registry"
version = "2.0.1"
include = ["AUTHORS.rst","CHANGELOG","CONTRIBUTING.rst","Dockerfile","LICENSE","Makefile","pyproject.toml","README.rst","requirements.txt","requirements-dev.txt","tox.ini","MANIFEST.in","docker/*","docs/*","scripts/*","**/conf/*", ".dockerignore", "data/*", "web/*", "templates/*"]
[tool.poetry.dependencies]
python = "^3.10"
aiofiles = "^24.1.0"
asyncpg = "^0.29.0"
fastapi = "^0.111.0"
httpx = "^0.27.0"
jinja2 = "^3.1.4"
opentelemetry-distro = "^0.46b0"
opentelemetry-exporter-otlp-proto-grpc = "^1.25.0"
opentelemetry-instrumentation-fastapi = "^0.46b0"
pydantic = "^2.7.4"
pydantic-xml = {extras = ["lxml"], version = "^2.11.0"}
pydantic-settings = "^2.3.4"
slack-sdk = "^3.30.0"
tortoise-orm = "^0.21.3"
uvicorn = "^0.30.1"
toml = "^0.10.2"
[tool.poetry.scripts]
planet_crs_registry = "planet_crs_registry.__main__:run"
[tool.poetry.group.dev.dependencies]
toml = "^0.10.2"
pre-commit = "^3.6.0"
pre-commit-hooks = "^4.5.0"
flit = "^3.9.0"
flit-core = "^3.9.0"
black = "^24.1.1"
coverage = "^7.4.1"
flake8 = "^7.0.0"
mccabe = "^0.7.0"
mypy = "^1.8.0"
mypy-extensions = "^1.0.0"
pylint = "^3.0.3"
pytest = "^8.0.0"
tox = "^4.12.1"
Sphinx = "^7.2.6"
pip-licenses = "^4.3.4"
sphinx_rtd_theme = "^2.0.0"
pur = "^7.3.1"
sphinx-bootstrap-theme = "^0.8.1"
sphinxcontrib-plantuml = "^0.27"
pytest-html = "^4.1.1"
dockerfile-parse = "^2.0.1"
docker = "^7.0.0"
jpype1 = "^1.5.0"
lxml = "^5.2.2"
requests = "^2.32.3"
tqdm = "^4.66.4"
xmltodict = "^0.13.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"