-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
123 lines (110 loc) · 2.96 KB
/
Copy pathpyproject.toml
File metadata and controls
123 lines (110 loc) · 2.96 KB
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools-scm[simple]>=8",
"setuptools>=80"
]
[project]
authors = [
{email = "tim@cerazone.net", name = "Tim Cera"}
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries :: Python Modules"
] # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
dependencies = [
"async_retriever",
"beautifulsoup4",
"cftime",
"cltoolbox",
"dateparser",
"geojson",
"haversine",
"httpretty",
"isodate",
"jinja2", # needed here until included in pydap
"lxml",
"mechanize",
"numpy",
"packaging",
"pandas[excel]",
"pint",
"pint-pandas",
"platformdirs",
"pydantic >=2",
"pydap",
"python-dateutil",
"requests",
"scipy",
"siphon",
"suds-community",
"tabulate"
]
description = "Will get time series from different sources on the internet"
dynamic = ["readme", "version"]
keywords = [
"rest",
"time-series",
"uri",
"url",
"web_services"
]
license = {text = "BSD-3-Clause"}
name = "tsgettoolbox"
requires-python = ">=3.10"
[project.scripts]
tsgettoolbox = "tsgettoolbox.tsgettoolbox:main"
[project.urls]
bitbucket = "https://bitbucket.org/timcera/tsgettoolbox/src/main/"
documentation = "https://timcera.bitbucket.io/tsgettoolbox/docs/index.html#tsgettoolbox-documentation"
github = "https://github.com/timcera/tsgettoolbox"
[tool.commitizen]
name = "cz_conventional_commits"
tag_format = "v$version"
update_changelog_on_bump = true
version = "26.2.6"
version_files = ["VERSION"]
multiline = true
[tool.isort]
profile = "black"
[tool.jupytext]
formats = "auto:percent"
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff]
fix = true
exclude = [
"src/*/toolbox_utils/**/*.py",
"src/*/cdo_api_py/**/*.py"
]
[tool.ruff.lint]
extend-select = ["I"]
[tool.ruff.lint.isort.import-heading]
future = "Future imports"
standard-library = "Standard library imports"
third-party = "Third party imports"
first-party = "First party imports"
local-folder = "Local folder imports"
[tool.setuptools]
include-package-data = true
license-files = ["LICENSE.txt"]
[tool.setuptools.dynamic]
readme = {file = "README.rst"}
version = {file = "VERSION"}
[tool.setuptools.packages.find]
where = ["src"]