-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
43 lines (40 loc) · 1.09 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
[build-system]
requires = ["setuptools", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
[project]
name = "django-geo-spaas"
description = "Tools to manage geospatial datasets"
readme = "README.md"
authors = [
{name = "Morten W. Hansen"},
{name = "Anton A. Korosov", email="anton.korosov@nersc.no"},
{name = "Artem Moiseev"},
{name = "Jeong-Won Park"},
{name = "Adrien Perrin"},
{name = "Arash Azamifard"},
]
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Utilities",
]
dependencies = [
"django-forms-bootstrap",
"django-leaflet",
"django<4",
"gdal",
"nansat",
"netCDF4",
"pythesint",
]
urls = {Repository = "https://github.com/nansencenter/django-geo-spaas"}
dynamic = ["version"]
[tool.setuptools]
packages = ["geospaas"]