-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
63 lines (56 loc) · 1.38 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
56
57
58
59
60
61
62
63
[metadata]
name = stac_ipyleaflet
version=0.3.6
author = Aimee Barciauskas
description=ipyleaflet customized for discovering, visualizing and interacting with STAC data.
long_description = file: README.md
url = https://github.com/abarciauskas-bgse/stac_ipyleaflet
keywords = stac_ipyleaflet
author_email=aimee@developmentseed.org
license=Apache-2.0 license
classifiers =
Development Status :: 2 - Beta
Intended Audience :: NASA Scientists
License :: OSI Approved :: Apache-2.0 license
Natural Language :: English
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
[bumpversion]
current_version = 0.3.6
commit = True
tag = True
[bumpversion:file:setup.py]
search = version='{current_version}'
replace = version='{new_version}'
[bumpversion:file:stac_ipyleaflet/__init__.py]
search = __version__ = '{current_version}'
replace = __version__ = '{new_version}'
[bdist_wheel]
universal = 1
[flake8]
exclude = docs
[tool:pytest]
collect_ignore = ['setup.py']
[options]
packages = find:
include_package_data=True
zip_safe=False
tests_require=[pytest>=3]
install_requires =
ipyleaflet>=0.17.2
ipywidgets>=8.0.4
ipyevents
matplotlib
pydantic
shapely
rasterio
requests
rio_tiler
rioxarray
xarray
python-dotenv
pystac_client==0.6.1
[options.extras_require]
test =
pytest