-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
86 lines (78 loc) · 2.04 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
86
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "grpc4bmi"
version = "0.5.0"
description = "Run your BMI implementation in a separate process and expose it as BMI-python with GRPC"
readme = "README.md"
requires-python = ">=3.7"
license = { text = "Apache License 2.0" }
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Utilities",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: Apache Software License"
]
dependencies = [
"grpcio",
"grpcio-reflection",
"grpcio-status",
"googleapis-common-protos>=1.5.5",
"protobuf>=4,<5",
"numpy",
"docker",
"bmipy",
"packaging",
"typeguard",
]
[project.optional-dependencies]
R = ["rpy2"]
julia = ["juliacall"]
dev = [
"build",
"pytest",
"pytest-cov",
"coverage[toml]",
"grpcio-tools", # Used to generate Python bindings from proto file
"nbconvert",
"ipykernel",
"nbformat",
]
docs = [
"sphinx",
"sphinxcontrib-apidoc",
"sphinxcontrib-napoleon",
"sphinxcontrib-jquery",
"sphinx-argparse",
"sphinx_rtd_theme>=1.0.0",
"numpydoc",
"sphinx-copybutton",
]
[project.scripts]
run-bmi-server = "grpc4bmi.run_server:main"
[project.urls]
"Homepage" = "https://github.com/eWaterCycle/grpc4bmi"
"Bug Tracker" = "https://github.com/eWaterCycle/grpc4bmi/issues"
"Documentation" = "https://grpc4bmi.readthedocs.io/"
"Source code" = "https://github.com/eWaterCycle/grpc4bmi"
[tool.setuptools.packages.find]
where = ["."]
include = ["grpc4bmi"]
namespaces = false
[tool.setuptools.package-data]
grpc4bmi = ["py.typed"]
[tool.coverage.run]
branch = true
[tool.pytest.ini_options]
testpaths = [
"test",
]