-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (45 loc) · 1.21 KB
/
pyproject.toml
File metadata and controls
51 lines (45 loc) · 1.21 KB
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
[build-system]
requires = ["flit_core"]
build-backend = "flit_core.buildapi"
[project]
name = "nodeorc"
authors = [
{ name = "Hessel Winsemius", email = "winsemius@rainbowsensing.com" },
]
dependencies = [
"boto3",
"dask[distributed]",
"pika",
"pydantic==2.3.0",
"pyopenrivercam>=0.8.5",
"python-dotenv",
"requests",
"sqlalchemy"
]
requires-python =">=3.9"
readme = "README.md"
classifiers = [
"Development Status :: 4 - Beta",
"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",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]
dynamic = ['version', 'description']
[project.optional-dependencies]
test = [
"pytest",
"pytest-cov",
"pytest-lazy-fixtures",
"pytest-mock"
]
[project.urls]
Source = "https://github.com/localdevices/nodeorc"
[project.scripts]
nodeorc = "nodeorc.main:cli"