-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
49 lines (43 loc) · 1.29 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
[build-system]
requires = ["flit_core >=3.4.0,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "nodeorc_api"
authors = [
{name = "Hessel Winsemius", email = "[email protected]"},
]
dependencies = [
"nodeorc",
"fastapi[standard]",
"zipstream"
]
requires-python = ">=3.9" # fix tests to support older versions
readme = "README.md"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Hydrology",
"Topic :: Scientific/Engineering :: Image Processing",
"License :: OSI Approved :: GNU Affero General Public License v3",
"License :: OSI Approved :: Image Processing",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11"
]
dynamic = ['version', 'description']
[project.optional-dependencies]
pi = ["picamera2"]
test = [
"pytest",
"pytest-cov",
"pytest-mock"
]
[project.urls]
Source = "https://github.com/localdevices//nodeorc-interface"
[tool.flit.sdist]
include = ["nodeorc_api"]
exclude = ["gcloud_dist", "hack", "helm", "htmlcov", "junit", "tests", ".github"]
[tool.pytest.ini_options]
testpaths = ["tests"]