forked from OpenG2P/openg2p-spar-mapper-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
33 lines (30 loc) · 917 Bytes
/
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "openg2p-spar-mapper-api"
authors = [
{ name="OpenG2P", email="[email protected]" },
]
description = "SPAR Mapper compliant with G2P Connect APIs"
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Operating System :: OS Independent",
]
dependencies = [
"openg2p-fastapi-common",
"openg2p-g2pconnect-common-lib",
"openg2p-g2pconnect-mapper-lib",
"gunicorn ~=22.0.0",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://openg2p.org"
Documentation = "https://docs.openg2p.org/"
Repository = "https://github.com/OpenG2P/openg2p-spar-mapper-api"
Source = "https://github.com/OpenG2P/openg2p-spar-mapper-api"
[tool.hatch.version]
path = "src/openg2p_spar_mapper_api/__init__.py"