-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
53 lines (48 loc) · 1.48 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
[build-system]
requires = ["setuptools", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
[project]
name = "superlimo"
description = "SuperPoint-based Lagrangian Ice MOtion algorithm"
readme = "README.md"
authors = [
{name = "Anton A. Korosov", email="[email protected]"},
{name = "Sean Chua"}
]
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Plugins",
"Environment :: Console",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Image Processing",
"Topic :: Scientific/Engineering :: Oceanography",
"Topic :: Utilities",
"Topic :: Software Development :: Libraries :: Python Modules",
]
keywords = ["sea ice drift", "SAR", "computer vision", "machine learning"]
dependencies = [
"numpy",
"matplotlib",
"pyproj",
"scipy",
"torch",
"nansat",
"omegaconf",
"scikit-image",
]
urls = {Repository = "https://github.com/nansencenter/py-thesaurus-interface"}
dynamic = ["version"]
[project.entry-points.console_scripts]
derive-drift = "superlimo.derive_drift:main"
[tool.setuptools]
packages = ["superlimo"]
[tool.setuptools.package-data]
"superlimo" = ["weights.pth"]