cytriangle 1.0.0__tar.gz → 1.0.2__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.

Potentially problematic release.


This version of cytriangle might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: cytriangle
3
- Version: 1.0.0
3
+ Version: 1.0.2
4
4
  Summary: Object-oriented Cython wrapper of Shewchuk's Triangle Library
5
5
  Home-page: https://github.com/m-clare/cytriangle
6
6
  License: LGPL 3.0
@@ -1,11 +1,11 @@
1
1
  [tool.poetry]
2
2
  name = "cytriangle"
3
- version = "1.0.0"
3
+ version = "1.0.2"
4
4
  description = "Object-oriented Cython wrapper of Shewchuk's Triangle Library"
5
5
  authors = ["Maryanne Wachter <mclare@utsv.net>"]
6
6
  maintainers = [
7
7
  "Maryanne Wachter <mclare@utsv.net>",
8
- "Connor Ferster <connorferser@gmail.com>"
8
+ "Connor Ferster <connorferster@gmail.com>"
9
9
  ]
10
10
  license = "LGPL 3.0"
11
11
  homepage = "https://github.com/m-clare/cytriangle"
@@ -30,6 +30,10 @@ classifiers = [
30
30
  "Programming Language :: Python :: 3.12",
31
31
  ]
32
32
 
33
+ [tool.cython-lint]
34
+ max-line-length = 88
35
+ ignore = ['E503', 'E504']
36
+
33
37
  [tool.poetry.build]
34
38
  script = "build_ext.py"
35
39
  generate-setup-file = true
@@ -15,7 +15,7 @@ install_requires = \
15
15
 
16
16
  setup_kwargs = {
17
17
  'name': 'cytriangle',
18
- 'version': '1.0.0',
18
+ 'version': '1.0.2',
19
19
  'description': "Object-oriented Cython wrapper of Shewchuk's Triangle Library",
20
20
  'long_description': '# CyTriangle\n## A Python Wrapped Triangle Library via Cython\n\n![ci-tests](https://github.com/m-clare/cytriangle/actions/workflows/ci.yaml/badge.svg)\n![code style](https://img.shields.io/badge/code%20style-black-000000.svg)\n![license](https://img.shields.io/github/license/m-clare/cytriangle)\n\n*CyTriangle* is an object-oriented python wrapper around Jonathan Richard Shewchuk\'s [Triangle](https://www.cs.cmu.edu/~quake/triangle.html) library. From its documentation:\n\n"Triangle generates exact Delaunay triangulations, constrained Delaunay triangulations, conforming Delaunay triangulations, Voronoi diagrams, and high-quality triangular meshes. The latter can be generated with no small or large angles, and are thus suitable for finite element analysis."\n\n*CyTriangle* utilizes Cython to provide an object-oriented interface to Triangle to enable easier inspection and modification of triangle objects.\n',
21
21
  'author': 'Maryanne Wachter',