-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (35 loc) · 1.01 KB
/
setup.py
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
30
31
32
33
34
35
36
37
38
39
40
41
#!/usr/bin/env python
# coding=utf-8
import pathlib
import sys
from setuptools import find_packages, setup
here = pathlib.Path(__file__).parent.resolve()
sys.path.append(here)
import versioneer # noqa: E402
with open(here / "README.md", encoding="utf-8") as f:
long_description = f.read()
setup(
name="geordpy",
description="A Python library for simplifying geodetic-coordinate polylines using the Ramer-Douglas-Peucker algorithm",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/avitase/geordpy",
author="Nis Meinert",
author_email="[email protected]",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
packages=find_packages(exclude=["docs", "tests"]),
python_requires=">=3.10",
install_requires=[
"numpy",
],
extras_require={
"dev": [
"pre-commit",
"pytest",
"pytest-cov",
"sphinx",
"scipy",
],
},
)