-
Notifications
You must be signed in to change notification settings - Fork 37
/
pyproject.toml
90 lines (79 loc) · 2.14 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
# Refer to PEP 621, 518 and 517
[build-system]
requires = [
"setuptools",
"Cython>=0.29.0,<3.0.0",
"versioneer[toml]",
#"numpy==1.16.4; python_version=='3.6'",
#"numpy==1.21.5; python_version=='3.7'",
"numpy==1.21.5; python_version=='3.8'",
"numpy==1.21.5; python_version=='3.9'",
"numpy==1.21.5; python_version=='3.10'",
"numpy==1.22.4; python_version>='3.11'",
]
build-backend = "setuptools.build_meta"
[project]
name = "pydsstools"
#version = "2.3.1"
dynamic = [
"version"
]
description = "Python library to read-write HEC-DSS database file"
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE"}
authors = [{name = "Gyan Basyal", email = "[email protected]"}]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Operating System :: Microsoft :: Windows :: Windows 11",
"Operating System :: Unix",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering",
]
dependencies = [
#"numpy>=1.16.4; python_version=='3.6'",
#"numpy>=1.21.5; python_version=='3.7'",
"numpy>=1.21.5; python_version<'3.11'",
"numpy>=1.22.4; python_version>='3.11'",
"pandas",
"affine",
]
[project.optional-dependencies]
test = [
"gdal >= 3.2.2",
"rasterio >= 1.2.1",
"matplotlib"
]
[project.urls]
repository = "https://github.com/gyanz/pydsstools"
[tool.setuptools]
include-package-data = true
zip-safe = false
[tool.setuptools.packages.find]
include = [
'pydsstools',
'pydsstools._lib',
'pydsstools._lib.x64',
'pydsstools._lib.x86',
'pydsstools.core',
'pydsstools.heclib',
'pydsstools.heclib.dss',
'pydsstools.utils',
]
namespaces = false
[tool.setuptools.package-data]
pydsstools = ['examples/*.py','examples/*.ds[cs]',
'src/*.pyx','src/*.pxd'
]
[tool.distutils.build_ext]
inplace = false
[tool.versioneer]
VCS = "git"
style = "pep440"
versionfile_source = "pydsstools/_version.py"
versionfile_build = "pydsstools/_version.py"
tag_prefix = ""
#parentdir_prefix =