eradication-data-requirements 0.1.0__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.
@@ -0,0 +1,15 @@
1
+ Metadata-Version: 2.1
2
+ Name: eradication_data_requirements
3
+ Version: 0.1.0
4
+ Summary: A template Python module
5
+ Home-page: https://github.com/IslasGECI/eradication_data_requirements
6
+ Author: Ciencia de Datos • GECI
7
+ Author-email: ciencia.datos@islas.org.mx
8
+ Requires-Python: >=3.9
9
+ Description-Content-Type: text/markdown
10
+ Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
11
+
12
+ <a href="https://www.islas.org.mx/"><img src="https://www.islas.org.mx/img/logo.svg" align="right" width="256" /></a>
13
+ # Eradication Data Requirements
14
+
15
+
@@ -0,0 +1,3 @@
1
+ <a href="https://www.islas.org.mx/"><img src="https://www.islas.org.mx/img/logo.svg" align="right" width="256" /></a>
2
+ # Eradication Data Requirements
3
+
@@ -0,0 +1,4 @@
1
+ """A template Python module"""
2
+
3
+ __version__ = "0.1.0"
4
+ from .transformations import add_offset # noqa
@@ -0,0 +1,2 @@
1
+ def add_offset(augend: int, addend: int) -> int:
2
+ return augend + addend
@@ -0,0 +1,14 @@
1
+ [build-system]
2
+ requires = ["flit_core >=2,<4"]
3
+ build-backend = "flit_core.buildapi"
4
+
5
+ [tool.flit.metadata]
6
+ author = "Ciencia de Datos • GECI"
7
+ author-email = "ciencia.datos@islas.org.mx"
8
+ classifiers = [ "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",]
9
+ description-file = "README.md"
10
+ home-page = "https://github.com/IslasGECI/eradication_data_requirements"
11
+ module = "eradication_data_requirements"
12
+ requires = [
13
+ ]
14
+ requires-python=">=3.9"