-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
41 lines (38 loc) · 1016 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
34
35
36
37
38
39
40
41
[build-system]
requires = ["setuptools", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
[project]
name = "geospaas_harvesting"
description = "Metadata harvesting tool for GeoSPaaS"
readme = "README.md"
authors = [{name = "Adrien Perrin", email = "[email protected]"}]
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
]
requires-python = ">=3.7"
dependencies = [
"copernicusmarine",
"django-geo-spaas",
"django",
"feedparser",
"graypy",
"metanorm",
"nansat",
"netCDF4",
"numpy",
"oauthlib",
"pythesint>=1.7.0",
"python-dateutil",
"PyYAML",
"requests_oauthlib",
"requests",
"shapely",
]
urls = {Repository = "https://github.com/nansencenter/django-geo-spaas-harvesting"}
dynamic = ["version"]
[tool.setuptools.packages.find]
include = ["geospaas_harvesting*"]