splitraster 0.3.6__tar.gz → 0.3.7__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
 
2
2
  The MIT License (MIT)
3
- Copyright (c) 2024, Caihao Cui
3
+ Copyright (c) 2025, Caihao Cui
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
6
6
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: splitraster
3
- Version: 0.3.6
3
+ Version: 0.3.7
4
4
  Summary: Provide good support for deep learning and computer vision tasks by creating a tiled output from an input raster dataset.
5
5
  Home-page: https://github.com/cuicaihao/split_raster
6
6
  Author: Chris Cui
@@ -10,16 +10,14 @@ Keywords: split raster tiling
10
10
  Platform: any
11
11
  Classifier: License :: OSI Approved :: MIT License
12
12
  Classifier: Operating System :: OS Independent
13
- Classifier: License :: OSI Approved :: MIT License
14
- Classifier: Programming Language :: Python
15
- Classifier: Programming Language :: Python :: 3
16
13
  Classifier: Programming Language :: Python :: 3.7
17
14
  Classifier: Programming Language :: Python :: 3.8
18
15
  Classifier: Programming Language :: Python :: 3.9
19
16
  Classifier: Programming Language :: Python :: 3.10
20
17
  Classifier: Programming Language :: Python :: 3.11
21
18
  Classifier: Programming Language :: Python :: 3.12
22
- Requires-Python: >=3.7, <3.13
19
+ Classifier: Programming Language :: Python :: 3.13
20
+ Requires-Python: >=3.7, <3.14
23
21
  Description-Content-Type: text/markdown
24
22
  License-File: LICENSE
25
23
 
@@ -2,7 +2,8 @@
2
2
 
3
3
  [![image](https://img.shields.io/pypi/pyversions/splitraster)](https://python.org/pypi/splitraster)
4
4
  [![image](https://img.shields.io/pypi/v/splitraster?color=g)](https://python.org/pypi/splitraster)
5
- [![CD](https://img.shields.io/github/actions/workflow/status/cuicaihao/split_raster/python-CD.yml?branch=master)](https://github.com/cuicaihao/split_raster/actions/workflows/python-CD.yml)
5
+ [![SplitRaster Developmnet Build Install and Test](https://github.com/cuicaihao/split_raster/actions/workflows/python-CI.yml/badge.svg?branch=develop)](https://github.com/cuicaihao/split_raster/actions/workflows/python-CI.yml)
6
+ [![SplitRaster Package Release and Publish](https://github.com/cuicaihao/split_raster/actions/workflows/python-CD.yml/badge.svg)](https://github.com/cuicaihao/split_raster/actions/workflows/python-CD.yml)
6
7
  [![DMonth](https://pepy.tech/badge/splitraster/month)](https://pepy.tech/project/splitraster)
7
8
  [![DTotal](https://pepy.tech/badge/splitraster?)](https://pepy.tech/project/splitraster)
8
9
  [![image](https://img.shields.io/github/license/cuicaihao/split_raster?color=blue)](https://python.org/pypi/splitraster)
@@ -172,13 +173,7 @@ n = geo.random_crop_image(input_tif_image_path, input_save_image_path, gt_tif_i
172
173
  print(f"{n} sample paris of {input_tif_image_path, gt_tif_image_path} are added at {input_save_image_path, gt_save_image_path}.")
173
174
 
174
175
  ```
175
-
176
- ## Update Log
177
- - 2024-Mar-23 Update github actions enable full CI/CD workflow, also add python 3.12 for build and test (https://pypi.org/project/splitraster/0.3.5/)
178
- - 2023-Mar-19 Update github actions and add tutorial for the package.
179
- - 2022-Dec-16 Upgrade the package to support python 3.8, 3.9, 3.10, 3.11 (https://pypi.org/project/splitraster/0.3.3).
180
- - 2022-Jan-16 Fix bugs to make package suitable for python 3.7. Publish new version at(https://pypi.org/project/splitraster/0.3.2/) .
181
-
176
+
182
177
  ## Contribution Guidelines
183
178
 
184
179
  If you run into issues or have questions, please [open an issue](https://github.com/cuicaihao/split_raster/issues) or [submit a pull request](https://github.com/cuicaihao/split_raster/pulls).
@@ -10,7 +10,7 @@ def read_requirements():
10
10
 
11
11
  setup(
12
12
  name="splitraster",
13
- version="0.3.6",
13
+ version="0.3.7",
14
14
  author="Chris Cui",
15
15
  license="MIT",
16
16
  platforms="any",
@@ -21,24 +21,20 @@ setup(
21
21
  url="https://github.com/cuicaihao/split_raster",
22
22
  package_dir={"": "src"},
23
23
  project_urls={},
24
- packages=find_packages(
25
- where="src", exclude=["data", "features", "models", "visualization"]
26
- ),
27
- python_requires=">=3.7, <3.13",
24
+ packages=find_packages(where="src", exclude=["data"]),
25
+ python_requires=">=3.7, <3.14",
28
26
  keywords="split raster tiling ",
29
27
  install_requires=read_requirements(),
30
28
  classifiers=[
31
29
  "License :: OSI Approved :: MIT License",
32
30
  "Operating System :: OS Independent",
33
- "License :: OSI Approved :: MIT License",
34
- "Programming Language :: Python",
35
- "Programming Language :: Python :: 3",
36
31
  "Programming Language :: Python :: 3.7",
37
32
  "Programming Language :: Python :: 3.8",
38
33
  "Programming Language :: Python :: 3.9",
39
34
  "Programming Language :: Python :: 3.10",
40
35
  "Programming Language :: Python :: 3.11",
41
36
  "Programming Language :: Python :: 3.12",
37
+ "Programming Language :: Python :: 3.13",
42
38
  ],
43
39
  )
44
40
  # rm -rf build dist
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: splitraster
3
- Version: 0.3.6
3
+ Version: 0.3.7
4
4
  Summary: Provide good support for deep learning and computer vision tasks by creating a tiled output from an input raster dataset.
5
5
  Home-page: https://github.com/cuicaihao/split_raster
6
6
  Author: Chris Cui
@@ -10,16 +10,14 @@ Keywords: split raster tiling
10
10
  Platform: any
11
11
  Classifier: License :: OSI Approved :: MIT License
12
12
  Classifier: Operating System :: OS Independent
13
- Classifier: License :: OSI Approved :: MIT License
14
- Classifier: Programming Language :: Python
15
- Classifier: Programming Language :: Python :: 3
16
13
  Classifier: Programming Language :: Python :: 3.7
17
14
  Classifier: Programming Language :: Python :: 3.8
18
15
  Classifier: Programming Language :: Python :: 3.9
19
16
  Classifier: Programming Language :: Python :: 3.10
20
17
  Classifier: Programming Language :: Python :: 3.11
21
18
  Classifier: Programming Language :: Python :: 3.12
22
- Requires-Python: >=3.7, <3.13
19
+ Classifier: Programming Language :: Python :: 3.13
20
+ Requires-Python: >=3.7, <3.14
23
21
  Description-Content-Type: text/markdown
24
22
  License-File: LICENSE
25
23
 
File without changes