-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
68 lines (60 loc) · 1.6 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "snowexsql"
dynamic = ["version"]
description = "SQL Database software for SnowEx data"
keywords = ["snowex", "sql", "database", "snow"]
readme = "README.rst"
requires-python = ">=3.8"
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10'
]
dependencies = [
"utm>=0.5.0,<1.0",
"geoalchemy2>=0.6,<1.0",
"geopandas>=0.7,<2.0",
"psycopg2-binary>=2.9.0,<2.10.0",
"rasterio>=1.1.5",
"SQLAlchemy >= 2.0.0",
]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
"sphinx-autobuild<=2024.5",
]
docs = [
"ipython>7.0,<9.0",
"nbconvert>=6.4.3,<6.5.0",
"nbsphinx==0.9.4",
"pandoc==1.0.2",
"plotly==5.22.0",
"sphinx-gallery==0.9.0",
"sphinx>=7.1,<7.4",
"sphinxcontrib-apidoc==0.3.0",
"jupyter-book>=1.0.2,<1.1",
"pyyaml<6.1"
]
all = ["snowexsql[dev,docs]"]
[project.license]
file = "LICENSE"
[project.urls]
Homepage = "https://github.com/SnowEx/snowexsql"
Documentation = "https://snowexsql.readthedocs.io"
Repository = "https://github.com/SnowEx/snowexsql.git"
Issues = "https://github.com/SnowEx/snowexsql/issues"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "snowexsql/_version.py"
[tool.hatch.version.raw-options]
local_scheme = "no-local-version"
[tool.hatch.build.targets.sdist]
exclude = ["/tests"]