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.
- eradication_data_requirements-0.1.0/PKG-INFO +15 -0
- eradication_data_requirements-0.1.0/README.md +3 -0
- eradication_data_requirements-0.1.0/eradication_data_requirements/__init__.py +4 -0
- eradication_data_requirements-0.1.0/eradication_data_requirements/transformations.py +2 -0
- eradication_data_requirements-0.1.0/pyproject.toml +14 -0
|
@@ -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,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"
|