-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
56 lines (48 loc) · 1.22 KB
/
setup.cfg
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
[metadata]
name = sondera
version = 0.0.4
author= Reinert Huseby Karlsen
description = Python client for accessing Swedish hydrology and meteorology related open data and observations, including SMHI and SGU open data API.
long_description = file: README.md, LICENSE
long_description_content_type = text/markdown
license = MIT
url = https://github.com/rhkarls/sondera
project_urls =
Bug Tracker = https://github.com/rhkarls/sondera/issues
classifiers =
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Operating System :: OS Independent
[options]
python_requires = >= 3.9
package_dir=
=src
packages = find:
zip_safe = False
install_requires =
numpy
pandas
geopandas
requests
tqdm
[options.packages.find]
where = src
[options.extras_require]
test =
pytest
[bumpversion]
current_version = 0.0.5
commit = True
tag = True
[bumpversion:file:sondera/__init__.py]
search = __version__ = '{current_version}'
replace = __version__ = '{new_version}'
[bdist_wheel]
universal = 1
[flake8]
exclude = docs
[tool:pytest]