-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (27 loc) · 1.31 KB
/
setup.py
File metadata and controls
29 lines (27 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
from setuptools import setup, find_packages
setup(
name="algogears",
version="1.1.2",
author="artandfi (Artem Fisunenko)",
author_email="artem.fisunenko@hotmail.com",
description="This library contains implementations of computational geometry algorithms in Python3 adapted for educational purposes.",
long_description="AlgoGEARS (Algorithms of (Computational) Geometry with Entities Available for Reuse and Serialization) is a library that provides implementations of certain computational geometry algorithms adapted for educational purposes."
"The basic entities it uses, such as geometric objects and binary trees, are constructed as Pydantic models that can be easily reused and serialized."
"This library is a continuation of PyCompGeomAlgorithms https://pypi.org/project/PyCompGeomAlgorithms/, a library by the same author as this one--artandfi (Artem Fisunenko).",
packages=find_packages(),
keywords=[
"Python3",
"computational geometry",
"convex hull",
"region search",
"geometric search",
"point location",
"proximity",
"closest pair",
"closest points"
],
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent"
]
)