Skip to content

Commit

Permalink
Initial feedstock commit with conda-smithy 3.34.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
conda-forge-admin committed Mar 27, 2024
0 parents commit af5037b
Show file tree
Hide file tree
Showing 3 changed files with 80 additions and 0 deletions.
1 change: 1 addition & 0 deletions conda-forge.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{}
21 changes: 21 additions & 0 deletions recipe/LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
PostgreSQL License

-------------------------------------------------------------------------------
This PyMEOS CFFI code is provided under The PostgreSQL License.

Copyright (c) 2020, Université libre de Bruxelles and PyMEOS CFFI contributors

PyMEOS CFFI includes MEOS, which includes portions of PostGIS version 3 source code released under the GNU General
Public License (GPLv2 or later). Copyright (c) 2001-2023, PostGIS contributors

Permission to use, copy, modify, and distribute this software and its documentation for any purpose, without fee, and without a written agreement is hereby
granted, provided that the above copyright notice and this paragraph and the following two paragraphs appear in all copies.

IN NO EVENT SHALL UNIVERSITÉ LIBRE DE BRUXELLES AND PYMEOS CFFI CONTRIBUTORS BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST
PROFITS, ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF UNIVERSITÉ LIBRE DE BRUXELLES AND PYMEOS CFFI CONTRIBUTORS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH
DAMAGE.

UNIVERSITÉ LIBRE DE BRUXELLES AND PYMEOS CFFI CONTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND UNIVERSITÉ LIBRE DE BRUXELLES AND PYMEOS CFFI CONTRIBUTORS HAVE NO OBLIGATIONS TO PROVIDE
MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
-------------------------------------------------------------------------------
58 changes: 58 additions & 0 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
{% set name = "pymeos-cffi" %}
{% set version = "1.1.0" %}

package:
name: {{ name|lower }}
version: {{ version }}

source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name | replace("-", "_") }}/{{ name | replace("-", "_") }}-{{ version }}.tar.gz
sha256: 08d0b50293f2af458188aa3a41af0d6ecd2d2db91130128ddf33ffb47343d57b

build:
skip: true # [win]
skip: true # [py<37]
number: 0
script: {{ PYTHON }} -m pip install . -vv

requirements:
build:
- {{ compiler('c') }}
host:
- python
- setuptools >=61.0
- cffi
- pip
- meos
run:
- python
- cffi
- meos
- python-dateutil
- shapely

test:
imports:
- pymeos_cffi
commands:
- pip check
- python -c "import pymeos_cffi; pymeos_cffi.meos_initialize('UTC'); pymeos_cffi.meos_finalize();"
requires:
- pip

about:
summary: Python wrapper for the MEOS C Library.
description: |
PyMEOS CFFI is a Python wrapper for the MEOS C Library. It wraps all the exposed functions and takes care of many
of the necessary conversions between Python and C data types, as well as managing the errors occurring in the C
library.
license: PostgreSQL
license_file: LICENSE.txt
home: https://pymeos.readthedocs.io
doc_url: https://pymeos.readthedocs.io
dev_url: https://github.com/MobilityDB/PyMEOS

extra:
recipe-maintainers:
- Diviloper
- estebanzimanyi

0 comments on commit af5037b

Please sign in to comment.