-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial feedstock commit with conda-smithy 3.34.0.
- Loading branch information
0 parents
commit af5037b
Showing
3 changed files
with
80 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. | ||
------------------------------------------------------------------------------- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |